Skip to content

Commit 03d92d3

Browse files
[Release 2.2.1] (#1659)
Co-authored-by: nirinchev <[email protected]>
1 parent aae8817 commit 03d92d3

File tree

10 files changed

+14
-17
lines changed

10 files changed

+14
-17
lines changed

CHANGELOG.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
## vNext (TBD)
2-
3-
### Enhancements
4-
* None
1+
## 2.2.1 (2024-05-02)
52

63
### Fixed
74
* `realm_privacy` bundle mistakenly included an exe-file preventing app store submissions. (Issue [#1656](https://github.com/realm/realm-dart/issues/1656))

packages/realm/example/pubspec.yaml

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

1717
dev_dependencies:

packages/realm/ios/realm.podspec

Lines changed: 1 addition & 1 deletion
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.0'
22+
s.version = '2.2.1'
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

Lines changed: 1 addition & 1 deletion
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.0'
39+
s.version = '2.2.1'
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

Lines changed: 2 additions & 2 deletions
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.0
3+
version: 2.2.1
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.0
16+
realm_dart: ^2.2.1
1717

1818
flutter:
1919
plugin:

packages/realm_common/pubspec.yaml

Lines changed: 1 addition & 1 deletion
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.0
6+
version: 2.2.1
77

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

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

Lines changed: 1 addition & 1 deletion
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.0';
79+
const libraryVersion = '2.2.1';
8080

8181
_RealmCore realmCore = _RealmCore();
8282

packages/realm_dart/pubspec.yaml

Lines changed: 3 additions & 3 deletions
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.0
3+
version: 2.2.1
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.0
27-
realm_generator: ^2.2.0
26+
realm_common: ^2.2.1
27+
realm_generator: ^2.2.1
2828
tar: ^1.0.1
2929
build_runner: ^2.1.0
3030
http: ^1.0.0

packages/realm_dart/src/realm_dart.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ RLM_API void realm_dart_invoke_unlock_callback(realm_userdata_t error, void* unl
8686
// Stamped into the library by the build system (see prepare-release.yml)
8787
// Keep this method as it is written and do not format it.
8888
// We have a github workflow that looks for and replaces this string as it is written here.
89-
RLM_API const char* realm_dart_library_version() { return "2.2.0"; }
89+
RLM_API const char* realm_dart_library_version() { return "2.2.1"; }
9090

9191
//for debugging only
9292
// RLM_API void realm_dart_gc() {

packages/realm_generator/pubspec.yaml

Lines changed: 2 additions & 2 deletions
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.0
6+
version: 2.2.1
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.0
20+
realm_common: ^2.2.1
2121
source_gen: ^1.1.0
2222
source_span: ^1.8.0
2323
collection: ^1.18.0

0 commit comments

Comments
 (0)