diff --git a/Directory.Build.props b/Directory.Build.props
index cdeac23..f6a25be 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -20,10 +20,13 @@
- 0.2.0
- **Improvements**
-- Add lightweight database migration system — schema changes are now applied automatically via numbered SQL migration files on server startup (#44)
-- Enable FTS5 Porter stemmer for skill search — stemmed queries like "closing" now match skills containing "close deal", improving search relevance (#43)
+ 0.2.1
+ **New Features**
+- Add resource file upload support to `POST /skills` — skills can now include arbitrary resource files (e.g. `references/guide.md`, `scripts/setup.sh`) per the AgentSkills.io spec (#52)
+
+**Improvements**
+- Resource upload endpoint now supports any subdirectory per the AgentSkills.io spec — previously restricted to `references/` only; all subdirectories are now accessible with path traversal protection (#53)
+- Fix stream leak on validation failure in resource upload path (#53)
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index e7c064e..ab1c0c9 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,3 +1,12 @@
+#### 0.2.1 April 29th 2026 ####
+
+**New Features**
+- Add resource file upload support to `POST /skills` — skills can now include arbitrary resource files (e.g. `references/guide.md`, `scripts/setup.sh`) per the AgentSkills.io spec (#52)
+
+**Improvements**
+- Resource upload endpoint now supports any subdirectory per the AgentSkills.io spec — previously restricted to `references/` only; all subdirectories are now accessible with path traversal protection (#53)
+- Fix stream leak on validation failure in resource upload path (#53)
+
#### 0.2.0 April 27th 2026 ####
**Improvements**