From a4133ff59429949d30c6a7d184768c699bda5655 Mon Sep 17 00:00:00 2001 From: Yavor Georgiev Date: Tue, 7 Jan 2025 17:14:23 +0100 Subject: [PATCH] Prepare for 20.1.0 (#3688) Co-authored-by: nirinchev --- CHANGELOG.md | 5 +---- Realm/AssemblyInfo.props | 2 +- Realm/Realm.Unity/package.json | 2 +- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d85643d6ce..012ea664e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,10 @@ -## vNext (TBD) +## 20.1.0 (2025-01-07) ### Breaking Changes * Support for UWP on arm32 has been removed due to the Windows SDK no longer supporting 32-bit ARM. (PR [#3683](https://github.com/realm/realm-dotnet/pull/3683)) * Support for Xamarin projects has been deprecated. While we still expect the SDK to work, we no longer actively test against Xamarin as it has been end-of-life'd by Microsoft since May. (PR [#3683](https://github.com/realm/realm-dotnet/pull/3683)) * Support for .NET 6 is deprecated. We still expect everything to work, but we'll retarget the SDK to the latest LTS version (8.0) in a future release. (PR [#3683](https://github.com/realm/realm-dotnet/pull/3683)) -### Enhancements -* None - ### Fixed * Having a query with a number of predicates ORed together may result in a crash on some platforms (strict weak ordering check failing on iphone). (Core 14.13.0) * Migrating primary key to a new type without migration function would cause an assertion to fail. (Core 20.1.1) diff --git a/Realm/AssemblyInfo.props b/Realm/AssemblyInfo.props index ad98d4aa88..0c0f48000e 100644 --- a/Realm/AssemblyInfo.props +++ b/Realm/AssemblyInfo.props @@ -1,7 +1,7 @@ Realm .NET - 20.0.0 + 20.1.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 361973208e..6275af1bd1 100644 --- a/Realm/Realm.Unity/package.json +++ b/Realm/Realm.Unity/package.json @@ -1,6 +1,6 @@ { "name": "io.realm.unity", - "version": "20.0.0", + "version": "20.1.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",