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**