From abb1bb3723cad3c54a3d1a7aa0fede6a4829a4ac Mon Sep 17 00:00:00 2001 From: nirinchev Date: Fri, 23 Aug 2024 21:31:54 +0000 Subject: [PATCH 1/2] Prepare for 12.4.0 --- CHANGELOG.md | 2 +- Realm/AssemblyInfo.props | 2 +- Realm/Realm.Unity/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d2a830307..32acd51ea9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## vNext (TBD) +## 12.4.0 (2024-08-23) ### Enhancements * Introduce a `ReconnectBackoffOptions` property on `SyncTimeoutOptions` that allows control over the delay the sync client applies before attempting to reconnect. (PR [#3661](https://github.com/realm/realm-dotnet/pull/3661)). diff --git a/Realm/AssemblyInfo.props b/Realm/AssemblyInfo.props index 86a77393ab..3c071b694c 100644 --- a/Realm/AssemblyInfo.props +++ b/Realm/AssemblyInfo.props @@ -1,7 +1,7 @@ Realm .NET - 12.3.0 + 12.4.0 Realm is a mobile database: a replacement for SQLite Realm Inc. Copyright © $([System.DateTime]::Now.ToString(yyyy)) Realm Inc. diff --git a/Realm/Realm.Unity/package.json b/Realm/Realm.Unity/package.json index f198efc2f9..ec12cfb780 100644 --- a/Realm/Realm.Unity/package.json +++ b/Realm/Realm.Unity/package.json @@ -1,6 +1,6 @@ { "name": "io.realm.unity", - "version": "12.3.0", + "version": "12.4.0", "displayName": "Realm", "description": "Realm is an embedded, object-oriented database that lets you build real-time, always-on applications. With Realm, data is directly exposed as objects and queryable by code, removing the need for ORM's riddled with performance & maintenance issues. Additionally, objects and collections in Realm are always live, meaning that they always reflect the latest data stored in the database. You can subscribe to changes, letting you keep your UI consistently up to date.\nThe .NET Realm SDK also provide access to Atlas App Services, a secure backend that can sync data between devices, authenticate and manage users, and run serverless JavaScript functions.", "unity": "2021.1", From 1bdf4294f0f14268b179ac3e09a1dab76fcd1014 Mon Sep 17 00:00:00 2001 From: Nikola Irinchev Date: Sun, 25 Aug 2024 21:55:00 +0200 Subject: [PATCH 2/2] Update date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32acd51ea9..ecf23a109c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 12.4.0 (2024-08-23) +## 12.4.0 (2024-08-25) ### Enhancements * Introduce a `ReconnectBackoffOptions` property on `SyncTimeoutOptions` that allows control over the delay the sync client applies before attempting to reconnect. (PR [#3661](https://github.com/realm/realm-dotnet/pull/3661)).