Skip to content

Commit c036f42

Browse files
[Release 2.3.0] (#1686)
Co-authored-by: nielsenko <[email protected]>
1 parent 86ad06c commit c036f42

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## vNext (TBD)
1+
## 2.3.0 (2024-05-23)
22

33
### Enhancements
44
* Added support for creating and storing a RealmObject using the `Realm.dynamic` API: `realm.dynamic.create("Person", primaryKey: 123)`. (PR [#1669](https://github.com/realm/realm-dart/pull/1669))

packages/realm/example/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ environment:
1111
dependencies:
1212
flutter:
1313
sdk: flutter
14-
realm: ^2.2.1
14+
realm: ^2.3.0
1515
characters: ^1.1.0
1616

1717
dev_dependencies:

packages/realm/ios/realm.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ puts "bundleId is #{bundleId}"
1919

2020
Pod::Spec.new do |s|
2121
s.name = 'realm'
22-
s.version = '2.2.1'
22+
s.version = '2.3.0'
2323
s.summary = 'The official Realm SDK for Flutter'
2424
s.description = <<-DESC
2525
Realm is a mobile database - an alternative to SQLite and key-value stores.

packages/realm/macos/realm.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ puts "bundleId is #{bundleId}"
3636

3737
Pod::Spec.new do |s|
3838
s.name = 'realm'
39-
s.version = '2.2.1'
39+
s.version = '2.3.0'
4040
s.summary = 'The official Realm SDK for Flutter'
4141
s.description = <<-DESC
4242
Realm is a mobile database - an alternative to SQLite and key-value stores.

packages/realm/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: realm
22
description: The official Realm SDK for Flutter. Realm is a mobile database - an alternative to SQLite and key-value stores.
3-
version: 2.2.1
3+
version: 2.3.0
44

55
homepage: https://www.realm.io
66
repository: https://github.com/realm/realm-dart
@@ -13,7 +13,7 @@ environment:
1313
dependencies:
1414
flutter:
1515
sdk: flutter
16-
realm_dart: ^2.2.1
16+
realm_dart: ^2.3.0
1717

1818
flutter:
1919
plugin:

packages/realm_common/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: >-
33
Hosts the common code shared between realm, realm_dart and realm_generator packages.
44
This package is part of the official Realm Flutter and Realm Dart SDKs.
55
6-
version: 2.2.1
6+
version: 2.3.0
77

88
homepage: https://www.realm.io
99
repository: https://github.com/realm/realm-dart

packages/realm_dart/lib/src/cli/metrics/metrics_command.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import 'options.dart';
1818
import '../common/utils.dart';
1919

2020
// stamped into the library by the build system (see prepare-release.yml)
21-
const realmCoreVersion = '14.6.2';
21+
const realmCoreVersion = '14.7.0';
2222

2323
class MetricsCommand extends Command<void> {
2424
@override

packages/realm_dart/lib/src/native/realm_core.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ final _pluginLib = () {
7676
}();
7777

7878
// stamped into the library by the build system (see prepare-release.yml)
79-
const libraryVersion = '2.2.1';
79+
const libraryVersion = '2.3.0';
8080

8181
_RealmCore realmCore = _RealmCore();
8282

packages/realm_dart/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: realm_dart
22
description: The official Realm SDK for Dart. Realm is a mobile database - an alternative to SQLite and key-value stores.
3-
version: 2.2.1
3+
version: 2.3.0
44

55
homepage: https://www.realm.io
66
repository: https://github.com/realm/realm-dart
@@ -23,8 +23,8 @@ dependencies:
2323
path: ^1.0.0
2424
pubspec_parse: ^1.0.0
2525
pub_semver: ^2.1.0
26-
realm_common: ^2.2.1
27-
realm_generator: ^2.2.1
26+
realm_common: ^2.3.0
27+
realm_generator: ^2.3.0
2828
tar: ^1.0.1
2929
build_runner: ^2.1.0
3030
http: ^1.0.0

packages/realm_dart/src/realm_dart.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ RLM_API void realm_dart_invoke_unlock_callback(realm_userdata_t error, void* unl
8080
// Stamped into the library by the build system (see prepare-release.yml)
8181
// Keep this method as it is written and do not format it.
8282
// We have a github workflow that looks for and replaces this string as it is written here.
83-
RLM_API const char* realm_dart_library_version() { return "2.2.1"; }
83+
RLM_API const char* realm_dart_library_version() { return "2.3.0"; }
8484

8585
//for debugging only
8686
// RLM_API void realm_dart_gc() {

packages/realm_generator/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: >-
33
Generates RealmObject classes from Realm data model classes.
44
This package is part of the official Realm Flutter and Realm Dart SDKs.
55
6-
version: 2.2.1
6+
version: 2.3.0
77

88
homepage: https://www.realm.io
99
repository: https://github.com/realm/realm-dart
@@ -17,7 +17,7 @@ dependencies:
1717
build_resolvers: ^2.0.9
1818
build: ^2.0.0
1919
dart_style: ^2.2.0
20-
realm_common: ^2.2.1
20+
realm_common: ^2.3.0
2121
source_gen: ^1.1.0
2222
source_span: ^1.8.0
2323
collection: ^1.18.0

0 commit comments

Comments
 (0)