From c7f62e2edc802e1b0bd6381dd379b2fa1ea77a8b Mon Sep 17 00:00:00 2001 From: Realm CI Date: Thu, 22 Jun 2023 16:33:10 +0200 Subject: [PATCH] [Release 1.3.0] (#1330) Co-authored-by: nielsenko --- 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/cli/metrics/metrics_command.dart | 2 +- lib/src/native/realm_core.dart | 2 +- pubspec.yaml | 2 +- src/realm_dart.cpp | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99a08f0bd..d793ad624 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## vNext (TBD) +## 1.3.0 (2023-06-22) ### Enhancements * Added support binary data type. ([#1320](https://github.com/realm/realm-dart/pull/1320)) diff --git a/common/pubspec.yaml b/common/pubspec.yaml index 93643e6a1..59cd20970 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.2.0 +version: 1.3.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 14d380732..9cd37c753 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.2.0 +version: 1.3.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 821ae43a3..611a4fa16 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.2.0' + s.version = '1.3.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 bf416ffcc..82f4bfad1 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.2.0' + s.version = '1.3.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 046ac3545..d40278a62 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.2.0 +version: 1.3.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 3cba457a3..6546ab63d 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.2.0 +version: 1.3.0 environment: sdk: ^3.0.2 diff --git a/generator/pubspec.yaml b/generator/pubspec.yaml index cc2d7bea1..344c5ce52 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.2.0 +version: 1.3.0 homepage: https://www.realm.io repository: https://github.com/realm/realm-dart diff --git a/lib/src/cli/metrics/metrics_command.dart b/lib/src/cli/metrics/metrics_command.dart index 5ca29feb4..874b6f6be 100644 --- a/lib/src/cli/metrics/metrics_command.dart +++ b/lib/src/cli/metrics/metrics_command.dart @@ -32,7 +32,7 @@ import 'options.dart'; import '../common/utils.dart'; // stamped into the library by the build system (see prepare-release.yml) -const realmCoreVersion = '13.14.0'; +const realmCoreVersion = '13.15.1'; class MetricsCommand extends Command { @override diff --git a/lib/src/native/realm_core.dart b/lib/src/native/realm_core.dart index 8cf056b49..4a953f735 100644 --- a/lib/src/native/realm_core.dart +++ b/lib/src/native/realm_core.dart @@ -88,7 +88,7 @@ final _pluginLib = () { }(); // stamped into the library by the build system (see prepare-release.yml) -const libraryVersion = '1.2.0'; +const libraryVersion = '1.3.0'; _RealmCore realmCore = _RealmCore(); diff --git a/pubspec.yaml b/pubspec.yaml index d0e26ccf0..8d0c4f60a 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.2.0 +version: 1.3.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 151912af9..0625cd92e 100644 --- a/src/realm_dart.cpp +++ b/src/realm_dart.cpp @@ -118,7 +118,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 "1.2.0"; } +RLM_API const char* realm_dart_library_version() { return "1.3.0"; } //for debugging only // RLM_API void realm_dart_gc() {