From e56380f05793998dfea0d87a34b68fdba475961c Mon Sep 17 00:00:00 2001 From: Finn Schiermer Andersen Date: Fri, 31 Mar 2023 13:49:23 +0200 Subject: [PATCH] Prepare 13.9.0 --- CHANGELOG.md | 5 +---- Package.swift | 2 +- dependencies.list | 2 +- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a5b8af5396..0d6337ade89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# NEXT RELEASE +# 13.9.0 Release notes ### Enhancements * Enable multiple processes to operate on an encrypted Realm simultaneously. ([#1845](https://github.com/realm/realm-core/issues/1845)) @@ -10,9 +10,6 @@ * Fix a data race in `DB::VersionManager`. If one thread committed a write transaction which increased the number of live versions above the previous highest seen during the current session at the same time as another thread began a read, the reading thread could read from a no-longer-valid memory mapping ([PR #6411](https://github.com/realm/realm-core/pull/6411), since v13.0.0). * Performing count() on an undefined Query would crash. ([#6443](https://github.com/realm/realm-core/issues/6443), since v13.7.0) -### Breaking changes -* None. - ### Compatibility * Fileformat: Generates files with format v23. Reads and automatically upgrade from fileformat v5. diff --git a/Package.swift b/Package.swift index 3044d84e86d..c1aa47cb1ad 100644 --- a/Package.swift +++ b/Package.swift @@ -3,7 +3,7 @@ import PackageDescription import Foundation -let versionStr = "13.8.0" +let versionStr = "13.9.0" 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 e90f25018fa..539e99b356b 100644 --- a/dependencies.list +++ b/dependencies.list @@ -1,5 +1,5 @@ PACKAGE_NAME=realm-core -VERSION=13.8.0 +VERSION=13.9.0 OPENSSL_VERSION=3.0.8 WIN32_ZLIB_VERSION=1.2.13 MDBREALM_TEST_SERVER_TAG=2023-03-16