From c2d7845c547f3dc4938a12d2299ba9653e8bc18a Mon Sep 17 00:00:00 2001 From: Aaron Stannard Date: Mon, 27 Apr 2026 20:19:23 +0000 Subject: [PATCH] Prepare for 0.1.2 release --- Directory.Build.props | 13 ++++--------- RELEASE_NOTES.md | 6 ++++++ 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index c711345..c813c72 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -20,15 +20,10 @@ - 0.1.1 - **Bug Fixes** -- Fix /health endpoint NotSupportedException from source-generated JSON serializer (#39) - -**CI/CD** -- Add --skip-duplicate to NuGet push commands to prevent duplicate package errors (#36) - -**Dependency Updates** -- Bump YamlDotNet from 16.3.0 to 17.0.1 (#38) + 0.1.2 + **Improvements** +- Return 409 Conflict for duplicate skill version uploads instead of 400 Bad Request (#41) + - Follows NuGet pattern — enables idempotent publish pipelines via --skip-duplicate semantics diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index e35d1b0..6b43be3 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,9 @@ +#### 0.1.2 April 27th 2026 #### + +**Improvements** +- Return 409 Conflict for duplicate skill version uploads instead of 400 Bad Request (#41) + - Follows NuGet pattern — enables idempotent publish pipelines via `--skip-duplicate` semantics + #### 0.1.1 April 24th 2026 #### **Bug Fixes**