Skip to content

Commit cbd6a7d

Browse files
authored
Prepare for 0.3.1+beta (#653)
* Prepare 0.3.1+beta
1 parent 0ebb0a4 commit cbd6a7d

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## vNext
1+
## 0.3.1+beta (2022-06-07)
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.3.0+beta
6+
version: 0.3.1+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.3.0+beta
3+
version: 0.3.1+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
@@ -12,7 +12,7 @@ project_dir = File.expand_path("../../../../", realmPackageDir)
1212
# //TODO read the version from pubspec.yaml
1313
Pod::Spec.new do |s|
1414
s.name = 'realm'
15-
s.version = '0.3.0+beta'
15+
s.version = '0.3.1+beta'
1616
s.summary = 'The official Realm SDK for Flutter'
1717
s.description = <<-DESC
1818
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.3.0+beta'
13+
s.version = '0.3.1+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.3.0+beta
3+
version: 0.3.1+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.3.0+beta
6+
version: 0.3.1+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.3.0+beta
6+
version: 0.3.1+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
@@ -70,7 +70,7 @@ class _RealmCore {
7070
return _instance ??= _RealmCore._();
7171
}
7272

73-
String get libraryVersion => '0.3.0+beta';
73+
String get libraryVersion => '0.3.1+beta';
7474

7575
LastError? getLastError(Allocator allocator) {
7676
final error = allocator<realm_error_t>();

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.3.0+beta
3+
version: 0.3.1+beta
44

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

0 commit comments

Comments
 (0)