From 89b3f832c6de018f0cc8d26797be16b3f7a21f9b Mon Sep 17 00:00:00 2001 From: Realm CI Date: Mon, 23 Jan 2023 17:55:37 +0100 Subject: [PATCH] [Release 0.10.0+rc] (#1113) Co-authored-by: desistefanova --- CHANGELOG.md | 2 +- common/pubspec.yaml | 2 +- flutter/realm_flutter/example/pubspec.yaml | 2 +- flutter/realm_flutter/ios/realm.podspec | 2 +- flutter/realm_flutter/macos/realm.podspec | 2 +- flutter/realm_flutter/pubspec.yaml | 2 +- flutter/realm_flutter/tests/pubspec.yaml | 2 +- generator/pubspec.yaml | 2 +- lib/src/native/realm_core.dart | 2 +- pubspec.yaml | 2 +- src/realm_dart.cpp | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa518ac41..94be7b1a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## vNext (TBD) +## 0.10.0+rc (2023-01-23) **This project is in Release Candidate stage.** diff --git a/common/pubspec.yaml b/common/pubspec.yaml index 6bc4011a5..75e68eff7 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: 0.9.0+rc +version: 0.10.0+rc 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 dab2cb41d..d0d3d82cc 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: 0.9.0+rc +version: 0.10.0+rc # 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 4c62aff2f..5353037cd 100644 --- a/flutter/realm_flutter/ios/realm.podspec +++ b/flutter/realm_flutter/ios/realm.podspec @@ -11,7 +11,7 @@ project_dir = File.expand_path("../../../../", realmPackageDir) Pod::Spec.new do |s| s.name = 'realm' - s.version = '0.9.0+rc' + s.version = '0.10.0+rc' 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 e99b34dbd..73a1c0187 100644 --- a/flutter/realm_flutter/macos/realm.podspec +++ b/flutter/realm_flutter/macos/realm.podspec @@ -10,7 +10,7 @@ realmPackageDir = File.expand_path(__dir__) Pod::Spec.new do |s| s.name = 'realm' - s.version = '0.9.0+rc' + s.version = '0.10.0+rc' 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 c0a52eaa9..6de158157 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: 0.9.0+rc +version: 0.10.0+rc 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 d404a511b..44e9d746d 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: 0.9.0+rc +version: 0.10.0+rc environment: sdk: ">=2.17.5 <3.0.0" diff --git a/generator/pubspec.yaml b/generator/pubspec.yaml index db5ebb9b5..42de75037 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: 0.9.0+rc +version: 0.10.0+rc 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 5f2325e41..93bd38164 100644 --- a/lib/src/native/realm_core.dart +++ b/lib/src/native/realm_core.dart @@ -84,7 +84,7 @@ class _RealmCore { } // stamped into the library by the build system (see prepare-release.yml) - static const libraryVersion = '0.9.0+rc'; + static const libraryVersion = '0.10.0+rc'; late String nativeLibraryVersion = _realmLib.realm_dart_library_version().cast().toDartString(); // for debugging only. Enable in realm_dart.cpp diff --git a/pubspec.yaml b/pubspec.yaml index 4272709b4..9df79351e 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: 0.9.0+rc +version: 0.10.0+rc 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 9c339168b..58bef2abe 100644 --- a/src/realm_dart.cpp +++ b/src/realm_dart.cpp @@ -96,7 +96,7 @@ RLM_API void realm_dart_invoke_unlock_callback(bool success, void* unlockFunc) // 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 "0.9.0+rc"; } +RLM_API const char* realm_dart_library_version() { return "0.10.0+rc"; } //for debugging only // RLM_API void realm_dart_gc() {