Skip to content

Commit 1f188a9

Browse files
realm-cinirinchev
andauthored
[Release 0.6.0+beta] (#980)
Co-authored-by: nirinchev <[email protected]>
1 parent 0c459a0 commit 1f188a9

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
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+
## 0.6.0+beta (2022-10-21)
22

33
**This project is in the Beta stage. The API should be quite stable, but occasional breaking changes may be made.**
44

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: 0.5.0+beta
6+
version: 0.6.0+beta
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: 0.5.0+beta
3+
version: 0.6.0+beta
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
@@ -11,7 +11,7 @@ project_dir = File.expand_path("../../../../", realmPackageDir)
1111

1212
Pod::Spec.new do |s|
1313
s.name = 'realm'
14-
s.version = '0.5.0+beta'
14+
s.version = '0.6.0+beta'
1515
s.summary = 'The official Realm SDK for Flutter'
1616
s.description = <<-DESC
1717
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
@@ -10,7 +10,7 @@ realmPackageDir = File.expand_path(__dir__)
1010

1111
Pod::Spec.new do |s|
1212
s.name = 'realm'
13-
s.version = '0.5.0+beta'
13+
s.version = '0.6.0+beta'
1414
s.summary = 'The official Realm SDK for Flutter'
1515
s.description = <<-DESC
1616
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: 0.5.0+beta
3+
version: 0.6.0+beta
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: 0.5.0+beta
6+
version: 0.6.0+beta
77

88
environment:
99
sdk: ">=2.17.0 <3.0.0"

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: 0.5.0+beta
6+
version: 0.6.0+beta
77

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

lib/src/native/realm_core.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class _RealmCore {
7979
}
8080

8181
// stamped into the library by the build system (see prepare-release.yml)
82-
static const libraryVersion = '0.5.0+beta';
82+
static const libraryVersion = '0.6.0+beta';
8383
late String nativeLibraryVersion = _realmLib.realm_dart_library_version().cast<Utf8>().toDartString();
8484

8585
LastError? getLastError(Allocator allocator) {

pubspec.yaml

Lines changed: 1 addition & 1 deletion
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: 0.5.0+beta
3+
version: 0.6.0+beta
44

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

0 commit comments

Comments
 (0)