Skip to content

Commit 5fbdef1

Browse files
Prepare release 1.5.0
1 parent 17053fa commit 5fbdef1

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

flutter_libs/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: objectbox_flutter_libs
22
description: Superfast NoSQL Flutter / Dart database. This package contains Flutter runtime libraries for ObjectBox.
33
repository: https://github.com/objectbox/objectbox-dart
44
homepage: https://objectbox.io
5-
version: 1.4.1
5+
version: 1.5.0
66

77
environment:
88
sdk: ">=2.12.0 <3.0.0"
@@ -11,7 +11,7 @@ environment:
1111
dependencies:
1212
# This is here just to ensure compatibility between objectbox-dart code and the libraries used
1313
# You should still depend on objectbox directly in your Flutter application.
14-
objectbox: 1.4.1
14+
objectbox: 1.5.0
1515
path_provider: ^2.0.0
1616

1717
flutter:

generator/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ name: objectbox_generator
22
description: ObjectBox Flutter / Dart database binding code generator - finds annotated entities and adds them to the ObjectBox DB model.
33
repository: https://github.com/objectbox/objectbox-dart
44
homepage: https://objectbox.io
5-
version: 1.4.1
5+
version: 1.5.0
66

77
environment:
88
sdk: '>=2.12.0 <3.0.0'
99

1010
dependencies:
11-
objectbox: 1.4.1
11+
objectbox: 1.5.0
1212
analyzer: '>=1.1.0 <4.0.0'
1313
build: ^2.0.0
1414
collection: ^1.15.0

objectbox/CHANGELOG.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
## latest
1+
## 1.5.0 (2022-05-11)
22
* Add `Store.runInTransactionAsync` to run database operations asynchronously in the background
3-
(requires Flutter 2.8.0/Dart 2.15.0 or newer).
3+
(requires Flutter 2.8.0/Dart 2.15.0 or newer). #415
44
* Rename `Store.runIsolated` to `runAsync`, drop unused `mode` parameter, propagate errors and
5-
handle premature isolate exit.
5+
handle premature isolate exit. #415
66
* The native ObjectBox library is also searched for in the `lib` subfolder on desktop OS (macOS,
77
Linux, Windows). This is where the [`install.sh`](/install.sh) script downloads it by default.
88
E.g. it is no longer necessary to install the library globally to run `dart test` or `flutter test`.
99
* Windows: Support database directory paths that contain unicode (UTF-8) characters. #406
10-
* Changed `Query.stream` to collect results in a worker isolate, which should typically be faster.
10+
* Changed `Query.stream` to collect results in a worker isolate, which should typically be faster. #420
1111
* Update: [objectbox-c 0.16.0](https://github.com/objectbox/objectbox-c/releases/tag/v0.16.0).
1212
* Update: [objectbox-android 3.1.3](https://github.com/objectbox/objectbox-java/releases/tag/V3.1.3).
1313
* Add new [task with tag list Flutter example app](example/flutter/objectbox_demo_relations) that
14-
shows how to use relations.
14+
shows how to use relations. #419
1515

1616
## 1.4.1 (2022-03-01)
1717

objectbox/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ We also have three video tutorials, each featuring a different example app:
9595
Add these dependencies to your `pubspec.yaml`:
9696
```yaml
9797
dependencies:
98-
objectbox: ^1.4.1
98+
objectbox: ^1.5.0
9999
objectbox_flutter_libs: any
100100
# for ObjectBox Sync use this dependency instead:
101101
# objectbox_sync_flutter_libs: any
@@ -138,7 +138,7 @@ Continue with the [examples README](example/README.md) to learn how to create en
138138
Add these dependencies to your `pubspec.yaml`:
139139
```yaml
140140
dependencies:
141-
objectbox: ^1.4.1
141+
objectbox: ^1.5.0
142142
143143
dev_dependencies:
144144
build_runner: ^2.0.0

objectbox/example/flutter/objectbox_demo/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
sdk: flutter
1212
cupertino_icons: any
1313
intl: any
14-
objectbox: ^1.4.1
14+
objectbox: ^1.5.0
1515
objectbox_flutter_libs: any
1616

1717
dev_dependencies:

objectbox/example/flutter/objectbox_demo_relations/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ environment:
2929
dependencies:
3030
flutter:
3131
sdk: flutter
32-
objectbox: ^1.4.1
32+
objectbox: ^1.5.0
3333
objectbox_flutter_libs: any
3434
intl: any
3535

objectbox/example/flutter/objectbox_demo_sync/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
sdk: flutter
1212
cupertino_icons: any
1313
intl: any
14-
objectbox: ^1.4.1
14+
objectbox: ^1.5.0
1515
objectbox_sync_flutter_libs: any
1616

1717
dev_dependencies:

objectbox/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Flutter database for super-fast NoSQL ACID compliant object persist
33
homepage: https://objectbox.io
44
repository: https://github.com/objectbox/objectbox-dart
55
documentation: https://docs.objectbox.io
6-
version: 1.4.1
6+
version: 1.5.0
77

88
environment:
99
# minimum Dart SDK (also see generator and flutter_libs)

sync_flutter_libs/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: objectbox_sync_flutter_libs
22
description: Fast Flutter database for persisting Dart objects. This package contains Flutter runtime libraries for ObjectBox, including ObjectBox Sync.
33
repository: https://github.com/objectbox/objectbox-dart
44
homepage: https://objectbox.io
5-
version: 1.4.1
5+
version: 1.5.0
66

77
environment:
88
sdk: ">=2.12.0 <3.0.0"
@@ -11,7 +11,7 @@ environment:
1111
dependencies:
1212
# This is here just to ensure compatibility between objectbox-dart code and the libraries used
1313
# You should still depend on objectbox directly in your Flutter application.
14-
objectbox: 1.4.1
14+
objectbox: 1.5.0
1515
path_provider: ^2.0.0
1616

1717
flutter:

0 commit comments

Comments
 (0)