diff --git a/CHANGELOG.md b/CHANGELOG.md index cc2ba60b6db..65cb0743b11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,9 @@ -# NEXT RELEASE +# 13.23.1 Release notes ### Enhancements -* (PR [#????](https://github.com/realm/realm-core/pull/????)) * Empty commits no longer trigger an extra invocation of the sync progress handler reporting the exact same information as the previous invocation ([PR #7031](https://github.com/realm/realm-core/pull/7031)). ### Fixed -* ([#????](https://github.com/realm/realm-core/issues/????), since v?.?.?) * `SyncManager::path_for_realm()` would return `//filename.realm.realm` if `custom_file_name` was set to `filename.realm` and the file didn't exist. It would correctly return `//filename.realm` if the file already existed. After this fix `//filename.realm` is returned in all cases. ([#7038](https://github.com/realm/realm-core/issues/7038)) * Fixed a bug preventing SSL handshake from completing successfuly due to failed hostname verification when linking against BoringSSL. (PR [#7034](https://github.com/realm/realm-core/pull/7034)) * Updating subscriptions did not trigger Realm autorefreshes, sometimes resulting in async refresh hanging until another write was performed by something else ([PR #7031](https://github.com/realm/realm-core/pull/7031)). diff --git a/Package.swift b/Package.swift index 27bd08e80df..92242acd4b4 100644 --- a/Package.swift +++ b/Package.swift @@ -3,7 +3,7 @@ import PackageDescription import Foundation -let versionStr = "13.23.0" +let versionStr = "13.23.1" let versionPieces = versionStr.split(separator: "-") let versionCompontents = versionPieces[0].split(separator: ".") let versionExtra = versionPieces.count > 1 ? versionPieces[1] : "" diff --git a/dependencies.list b/dependencies.list index 750f71017da..a1ddf538dac 100644 --- a/dependencies.list +++ b/dependencies.list @@ -1,5 +1,5 @@ PACKAGE_NAME=realm-core -VERSION=13.23.0 +VERSION=13.23.1 OPENSSL_VERSION=3.0.8 ZLIB_VERSION=1.2.13 MDBREALM_TEST_SERVER_TAG=2023-08-11