diff --git a/Directory.Build.props b/Directory.Build.props
index ba31c4a6..1e0c7fbb 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -2,9 +2,12 @@
Copyright © 2013-2025 Akka.NET Team
Akka.NET Team
- 1.5.51.1
- **Bug Fixes**
-* [Fix journal health check registration without event adapters](https://github.com/akkadotnet/Akka.Hosting/pull/667) - resolved [issue #666](https://github.com/akkadotnet/Akka.Hosting/issues/666) where journal health checks were not being registered when using `.WithHealthCheck()` without adding event adapters
+ 1.5.52
+ **API Changes**
+* [Deprecate JournalOptions.Adapters property in favor of callback API](https://github.com/akkadotnet/Akka.Hosting/pull/669) - resolved [issue #665](https://github.com/akkadotnet/Akka.Hosting/issues/665) by deprecating the `JournalOptions.Adapters` property. Users should migrate to the unified callback pattern: `builder.WithJournal(options, journal => journal.AddWriteEventAdapter<T>(...))`. The deprecated property will be removed in v1.6.0.
+
+**Updates**
+* [Bump Akka version from 1.5.51 to 1.5.52](https://github.com/akkadotnet/akka.net/releases/tag/1.5.52)
akkalogo.png
https://github.com/akkadotnet/Akka.Hosting
@@ -46,4 +49,4 @@
true
snupkg
-
+
\ No newline at end of file
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 07d53642..11145446 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,3 +1,11 @@
+#### 1.5.52 October 9th 2025 ####
+
+**API Changes**
+* [Deprecate JournalOptions.Adapters property in favor of callback API](https://github.com/akkadotnet/Akka.Hosting/pull/669) - resolved [issue #665](https://github.com/akkadotnet/Akka.Hosting/issues/665) by deprecating the `JournalOptions.Adapters` property. Users should migrate to the unified callback pattern: `builder.WithJournal(options, journal => journal.AddWriteEventAdapter(...))`. The deprecated property will be removed in v1.6.0.
+
+**Updates**
+* [Bump Akka version from 1.5.51 to 1.5.52](https://github.com/akkadotnet/akka.net/releases/tag/1.5.52)
+
#### 1.5.51.1 October 2nd 2025 ####
**Bug Fixes**