Skip to content

Commit ed592e6

Browse files
[Release 3.4.0] (#1776)
Co-authored-by: nielsenko <[email protected]>
1 parent 546d349 commit ed592e6

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

Diff for: CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## vNext (TBD)
1+
## 3.4.0 (2024-08-13)
22

33
### Enhancements
44
* Added a new parameter of type `SyncTimeoutOptions` to `AppConfiguration`. It allows users to control sync timings, such as ping/pong intervals as well various connection timeouts. (Issue [#1763](https://github.com/realm/realm-dart/issues/1763))

Diff for: packages/realm/example/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ environment:
1111
dependencies:
1212
flutter:
1313
sdk: flutter
14-
realm: ^3.3.0
14+
realm: ^3.4.0
1515
characters: ^1.1.0
1616

1717
dev_dependencies:

Diff for: packages/realm/ios/realm.podspec

+1-1
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 = '3.3.0'
22+
s.version = '3.4.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.

Diff for: packages/realm/macos/realm.podspec

+1-1
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 = '3.3.0'
39+
s.version = '3.4.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.

Diff for: packages/realm/pubspec.yaml

+2-2
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: 3.3.0
3+
version: 3.4.0
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: ^3.3.0
16+
realm_dart: ^3.4.0
1717

1818
flutter:
1919
plugin:

Diff for: packages/realm_common/pubspec.yaml

+1-1
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: 3.3.0
6+
version: 3.4.0
77

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

Diff for: packages/realm_dart/lib/src/handles/native/realm_library.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import 'realm_bindings.dart';
1010
const bugInTheSdkMessage = "This is likely a bug in the Realm SDK - please file an issue at https://github.com/realm/realm-dart/issues";
1111

1212
// stamped into the library by the build system (see prepare-release.yml)
13-
const libraryVersion = '3.3.0';
13+
const libraryVersion = '3.4.0';
1414

1515
final realmLib = () {
1616
final result = RealmLibrary(initRealm());

Diff for: packages/realm_dart/pubspec.yaml

+3-3
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: 3.3.0
3+
version: 3.4.0
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: ^3.3.0
27-
realm_generator: ^3.3.0
26+
realm_common: ^3.4.0
27+
realm_generator: ^3.4.0
2828
tar: ^1.0.1
2929
build_runner: ^2.1.0
3030
http: ^1.0.0

Diff for: packages/realm_dart/src/realm_dart.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ RLM_API void realm_dart_invoke_unlock_callback(realm_userdata_t error, void* unl
8080
// Stamped into the library by the build system (see prepare-release.yml)
8181
// Keep this method as it is written and do not format it.
8282
// We have a github workflow that looks for and replaces this string as it is written here.
83-
RLM_API const char* realm_dart_library_version() { return "3.3.0"; }
83+
RLM_API const char* realm_dart_library_version() { return "3.4.0"; }
8484

8585
//for debugging only
8686
// RLM_API void realm_dart_gc() {

Diff for: packages/realm_generator/pubspec.yaml

+2-2
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: 3.3.0
6+
version: 3.4.0
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: ^3.3.0
20+
realm_common: ^3.4.0
2121
source_gen: ^1.1.0
2222
source_span: ^1.8.0
2323
collection: ^1.18.0

0 commit comments

Comments
 (0)