Skip to content

Commit c7f62e2

Browse files
realm-cinielsenko
andauthored
[Release 1.3.0] (#1330)
Co-authored-by: nielsenko <[email protected]>
1 parent e389ffd commit c7f62e2

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## vNext (TBD)
1+
## 1.3.0 (2023-06-22)
22

33
### Enhancements
44
* Added support binary data type. ([#1320](https://github.com/realm/realm-dart/pull/1320))

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: 1.2.0
6+
version: 1.3.0
77

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

flutter/realm_flutter/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: realm_example
22
description: Demonstrates how to use the Realm SDK for Flutter.
3-
version: 1.2.0
3+
version: 1.3.0
44

55
# The following line prevents the package from being accidentally published to
66
# pub.dev using `pub publish`. This is preferred for private packages.

flutter/realm_flutter/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 = '1.2.0'
22+
s.version = '1.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.

flutter/realm_flutter/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 = '1.2.0'
39+
s.version = '1.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.

flutter/realm_flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
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: 1.2.0
3+
version: 1.3.0
44

55
homepage: https://www.realm.io
66
repository: https://github.com/realm/realm-dart

flutter/realm_flutter/tests/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: A new Flutter project.
33

44
publish_to: "none"
55

6-
version: 1.2.0
6+
version: 1.3.0
77

88
environment:
99
sdk: ^3.0.2

generator/pubspec.yaml

Lines changed: 1 addition & 1 deletion
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: 1.2.0
6+
version: 1.3.0
77

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

lib/src/cli/metrics/metrics_command.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import 'options.dart';
3232
import '../common/utils.dart';
3333

3434
// stamped into the library by the build system (see prepare-release.yml)
35-
const realmCoreVersion = '13.14.0';
35+
const realmCoreVersion = '13.15.1';
3636

3737
class MetricsCommand extends Command<void> {
3838
@override

lib/src/native/realm_core.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ final _pluginLib = () {
8888
}();
8989

9090
// stamped into the library by the build system (see prepare-release.yml)
91-
const libraryVersion = '1.2.0';
91+
const libraryVersion = '1.3.0';
9292

9393
_RealmCore realmCore = _RealmCore();
9494

0 commit comments

Comments
 (0)