diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5b7244fd..8f0f0366 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.24.4" + ".": "2.24.5" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index d464029e..24a2254a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.24.5](https://github.com/supabase/supabase-swift/compare/v2.24.4...v2.24.5) (2025-02-10) + + +### Bug Fixes + +* **realtime:** remove jwt check ([#658](https://github.com/supabase/supabase-swift/issues/658)) ([4c95559](https://github.com/supabase/supabase-swift/commit/4c955592c58c7d0aafbd0c32ae8a85e213303caa)) + ## [2.24.4](https://github.com/supabase/supabase-swift/compare/v2.24.3...v2.24.4) (2025-01-16) diff --git a/Sources/Helpers/Version.swift b/Sources/Helpers/Version.swift index 052341a1..398ce92e 100644 --- a/Sources/Helpers/Version.swift +++ b/Sources/Helpers/Version.swift @@ -1,6 +1,6 @@ import XCTestDynamicOverlay -private let _version = "2.24.4" // {x-release-please-version} +private let _version = "2.24.5" // {x-release-please-version} #if DEBUG package let version = isTesting ? "0.0.0" : _version