diff --git a/CHANGELOG.md b/CHANGELOG.md index 81a45a252..2fac216e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## vNext (TBD) +## 1.8.0 (2024-01-29) ### Enhancements * Added `RealmObject.getBacklinks('sourceProperty')` which is a method allowing you to look up all objects of type `SourceType` which link to the current object via their `sourceProperty` property. (Issue [#1480](https://github.com/realm/realm-dart/issues/1480)) diff --git a/common/pubspec.yaml b/common/pubspec.yaml index 35dda73d2..dd9fc8bf8 100644 --- a/common/pubspec.yaml +++ b/common/pubspec.yaml @@ -3,7 +3,7 @@ description: >- Hosts the common code shared between realm, realm_dart and realm_generator packages. This package is part of the official Realm Flutter and Realm Dart SDKs. -version: 1.7.0 +version: 1.8.0 homepage: https://www.realm.io repository: https://github.com/realm/realm-dart diff --git a/flutter/realm_flutter/example/pubspec.yaml b/flutter/realm_flutter/example/pubspec.yaml index 198a92d41..9bf1dea08 100644 --- a/flutter/realm_flutter/example/pubspec.yaml +++ b/flutter/realm_flutter/example/pubspec.yaml @@ -1,6 +1,6 @@ name: realm_example description: Demonstrates how to use the Realm SDK for Flutter. -version: 1.7.0 +version: 1.8.0 # The following line prevents the package from being accidentally published to # pub.dev using `pub publish`. This is preferred for private packages. diff --git a/flutter/realm_flutter/ios/realm.podspec b/flutter/realm_flutter/ios/realm.podspec index 546e59d3f..bbca4ed99 100644 --- a/flutter/realm_flutter/ios/realm.podspec +++ b/flutter/realm_flutter/ios/realm.podspec @@ -19,7 +19,7 @@ puts "bundleId is #{bundleId}" Pod::Spec.new do |s| s.name = 'realm' - s.version = '1.7.0' + s.version = '1.8.0' s.summary = 'The official Realm SDK for Flutter' s.description = <<-DESC Realm is a mobile database - an alternative to SQLite and key-value stores. diff --git a/flutter/realm_flutter/macos/realm.podspec b/flutter/realm_flutter/macos/realm.podspec index 917b96862..74d909ed5 100644 --- a/flutter/realm_flutter/macos/realm.podspec +++ b/flutter/realm_flutter/macos/realm.podspec @@ -36,7 +36,7 @@ puts "bundleId is #{bundleId}" Pod::Spec.new do |s| s.name = 'realm' - s.version = '1.7.0' + s.version = '1.8.0' s.summary = 'The official Realm SDK for Flutter' s.description = <<-DESC Realm is a mobile database - an alternative to SQLite and key-value stores. diff --git a/flutter/realm_flutter/pubspec.yaml b/flutter/realm_flutter/pubspec.yaml index 1e3f9a3fe..520a0061a 100644 --- a/flutter/realm_flutter/pubspec.yaml +++ b/flutter/realm_flutter/pubspec.yaml @@ -1,6 +1,6 @@ name: realm description: The official Realm SDK for Flutter. Realm is a mobile database - an alternative to SQLite and key-value stores. -version: 1.7.0 +version: 1.8.0 homepage: https://www.realm.io repository: https://github.com/realm/realm-dart diff --git a/flutter/realm_flutter/tests/pubspec.yaml b/flutter/realm_flutter/tests/pubspec.yaml index 8be3b6d57..cf387fcae 100644 --- a/flutter/realm_flutter/tests/pubspec.yaml +++ b/flutter/realm_flutter/tests/pubspec.yaml @@ -3,7 +3,7 @@ description: A new Flutter project. publish_to: "none" -version: 1.7.0 +version: 1.8.0 environment: sdk: ^3.0.0 diff --git a/generator/pubspec.yaml b/generator/pubspec.yaml index 46412ad5a..d6987fa04 100644 --- a/generator/pubspec.yaml +++ b/generator/pubspec.yaml @@ -3,7 +3,7 @@ description: >- Generates RealmObject classes from Realm data model classes. This package is part of the official Realm Flutter and Realm Dart SDKs. -version: 1.7.0 +version: 1.8.0 homepage: https://www.realm.io repository: https://github.com/realm/realm-dart diff --git a/lib/src/native/realm_core.dart b/lib/src/native/realm_core.dart index e321c06c9..c345ad6f9 100644 --- a/lib/src/native/realm_core.dart +++ b/lib/src/native/realm_core.dart @@ -90,7 +90,7 @@ final _pluginLib = () { }(); // stamped into the library by the build system (see prepare-release.yml) -const libraryVersion = '1.7.0'; +const libraryVersion = '1.8.0'; _RealmCore realmCore = _RealmCore(); diff --git a/pubspec.yaml b/pubspec.yaml index e222dc9f3..63c1fab40 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: realm_dart description: The official Realm SDK for Dart. Realm is a mobile database - an alternative to SQLite and key-value stores. -version: 1.7.0 +version: 1.8.0 homepage: https://www.realm.io repository: https://github.com/realm/realm-dart diff --git a/src/realm_dart.cpp b/src/realm_dart.cpp index 6862aea2a..5d2a53dd8 100644 --- a/src/realm_dart.cpp +++ b/src/realm_dart.cpp @@ -86,7 +86,7 @@ RLM_API void realm_dart_invoke_unlock_callback(realm_userdata_t error, void* unl // Stamped into the library by the build system (see prepare-release.yml) // Keep this method as it is written and do not format it. // We have a github workflow that looks for and replaces this string as it is written here. -RLM_API const char* realm_dart_library_version() { return "1.7.0"; } +RLM_API const char* realm_dart_library_version() { return "1.8.0"; } //for debugging only // RLM_API void realm_dart_gc() {