Skip to content

Commit

Permalink
[Release 2.2.1] (#1659)
Browse files Browse the repository at this point in the history
Co-authored-by: nirinchev <[email protected]>
  • Loading branch information
fealebenpae and nirinchev committed May 3, 2024
1 parent aae8817 commit 03d92d3
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 17 deletions.
5 changes: 1 addition & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
## vNext (TBD)

### Enhancements
* None
## 2.2.1 (2024-05-02)

### Fixed
* `realm_privacy` bundle mistakenly included an exe-file preventing app store submissions. (Issue [#1656](https://github.com/realm/realm-dart/issues/1656))
Expand Down
2 changes: 1 addition & 1 deletion packages/realm/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ environment:
dependencies:
flutter:
sdk: flutter
realm: ^2.2.0
realm: ^2.2.1
characters: ^1.1.0

dev_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion packages/realm/ios/realm.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ puts "bundleId is #{bundleId}"

Pod::Spec.new do |s|
s.name = 'realm'
s.version = '2.2.0'
s.version = '2.2.1'
s.summary = 'The official Realm SDK for Flutter'
s.description = <<-DESC
Realm is a mobile database - an alternative to SQLite and key-value stores.
Expand Down
2 changes: 1 addition & 1 deletion packages/realm/macos/realm.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ puts "bundleId is #{bundleId}"

Pod::Spec.new do |s|
s.name = 'realm'
s.version = '2.2.0'
s.version = '2.2.1'
s.summary = 'The official Realm SDK for Flutter'
s.description = <<-DESC
Realm is a mobile database - an alternative to SQLite and key-value stores.
Expand Down
4 changes: 2 additions & 2 deletions packages/realm/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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: 2.2.0
version: 2.2.1

homepage: https://www.realm.io
repository: https://github.com/realm/realm-dart
Expand All @@ -13,7 +13,7 @@ environment:
dependencies:
flutter:
sdk: flutter
realm_dart: ^2.2.0
realm_dart: ^2.2.1

flutter:
plugin:
Expand Down
2 changes: 1 addition & 1 deletion packages/realm_common/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: 2.2.0
version: 2.2.1

homepage: https://www.realm.io
repository: https://github.com/realm/realm-dart
Expand Down
2 changes: 1 addition & 1 deletion packages/realm_dart/lib/src/native/realm_core.dart
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ final _pluginLib = () {
}();

// stamped into the library by the build system (see prepare-release.yml)
const libraryVersion = '2.2.0';
const libraryVersion = '2.2.1';

_RealmCore realmCore = _RealmCore();

Expand Down
6 changes: 3 additions & 3 deletions packages/realm_dart/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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: 2.2.0
version: 2.2.1

homepage: https://www.realm.io
repository: https://github.com/realm/realm-dart
Expand All @@ -23,8 +23,8 @@ dependencies:
path: ^1.0.0
pubspec_parse: ^1.0.0
pub_semver: ^2.1.0
realm_common: ^2.2.0
realm_generator: ^2.2.0
realm_common: ^2.2.1
realm_generator: ^2.2.1
tar: ^1.0.1
build_runner: ^2.1.0
http: ^1.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/realm_dart/src/realm_dart.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 "2.2.0"; }
RLM_API const char* realm_dart_library_version() { return "2.2.1"; }

//for debugging only
// RLM_API void realm_dart_gc() {
Expand Down
4 changes: 2 additions & 2 deletions packages/realm_generator/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: 2.2.0
version: 2.2.1

homepage: https://www.realm.io
repository: https://github.com/realm/realm-dart
Expand All @@ -17,7 +17,7 @@ dependencies:
build_resolvers: ^2.0.9
build: ^2.0.0
dart_style: ^2.2.0
realm_common: ^2.2.0
realm_common: ^2.2.1
source_gen: ^1.1.0
source_span: ^1.8.0
collection: ^1.18.0
Expand Down

0 comments on commit 03d92d3

Please sign in to comment.