Skip to content

Commit

Permalink
Prepare release 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot-team committed May 11, 2022
1 parent 17053fa commit 5fbdef1
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions flutter_libs/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: objectbox_flutter_libs
description: Superfast NoSQL Flutter / Dart database. This package contains Flutter runtime libraries for ObjectBox.
repository: https://github.com/objectbox/objectbox-dart
homepage: https://objectbox.io
version: 1.4.1
version: 1.5.0

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

flutter:
Expand Down
4 changes: 2 additions & 2 deletions generator/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: objectbox_generator
description: ObjectBox Flutter / Dart database binding code generator - finds annotated entities and adds them to the ObjectBox DB model.
repository: https://github.com/objectbox/objectbox-dart
homepage: https://objectbox.io
version: 1.4.1
version: 1.5.0

environment:
sdk: '>=2.12.0 <3.0.0'

dependencies:
objectbox: 1.4.1
objectbox: 1.5.0
analyzer: '>=1.1.0 <4.0.0'
build: ^2.0.0
collection: ^1.15.0
Expand Down
10 changes: 5 additions & 5 deletions objectbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
## latest
## 1.5.0 (2022-05-11)
* Add `Store.runInTransactionAsync` to run database operations asynchronously in the background
(requires Flutter 2.8.0/Dart 2.15.0 or newer).
(requires Flutter 2.8.0/Dart 2.15.0 or newer). #415
* Rename `Store.runIsolated` to `runAsync`, drop unused `mode` parameter, propagate errors and
handle premature isolate exit.
handle premature isolate exit. #415
* The native ObjectBox library is also searched for in the `lib` subfolder on desktop OS (macOS,
Linux, Windows). This is where the [`install.sh`](/install.sh) script downloads it by default.
E.g. it is no longer necessary to install the library globally to run `dart test` or `flutter test`.
* Windows: Support database directory paths that contain unicode (UTF-8) characters. #406
* Changed `Query.stream` to collect results in a worker isolate, which should typically be faster.
* Changed `Query.stream` to collect results in a worker isolate, which should typically be faster. #420
* Update: [objectbox-c 0.16.0](https://github.com/objectbox/objectbox-c/releases/tag/v0.16.0).
* Update: [objectbox-android 3.1.3](https://github.com/objectbox/objectbox-java/releases/tag/V3.1.3).
* Add new [task with tag list Flutter example app](example/flutter/objectbox_demo_relations) that
shows how to use relations.
shows how to use relations. #419

## 1.4.1 (2022-03-01)

Expand Down
4 changes: 2 additions & 2 deletions objectbox/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ We also have three video tutorials, each featuring a different example app:
Add these dependencies to your `pubspec.yaml`:
```yaml
dependencies:
objectbox: ^1.4.1
objectbox: ^1.5.0
objectbox_flutter_libs: any
# for ObjectBox Sync use this dependency instead:
# objectbox_sync_flutter_libs: any
Expand Down Expand Up @@ -138,7 +138,7 @@ Continue with the [examples README](example/README.md) to learn how to create en
Add these dependencies to your `pubspec.yaml`:
```yaml
dependencies:
objectbox: ^1.4.1
objectbox: ^1.5.0
dev_dependencies:
build_runner: ^2.0.0
Expand Down
2 changes: 1 addition & 1 deletion objectbox/example/flutter/objectbox_demo/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
sdk: flutter
cupertino_icons: any
intl: any
objectbox: ^1.4.1
objectbox: ^1.5.0
objectbox_flutter_libs: any

dev_dependencies:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ environment:
dependencies:
flutter:
sdk: flutter
objectbox: ^1.4.1
objectbox: ^1.5.0
objectbox_flutter_libs: any
intl: any

Expand Down
2 changes: 1 addition & 1 deletion objectbox/example/flutter/objectbox_demo_sync/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
sdk: flutter
cupertino_icons: any
intl: any
objectbox: ^1.4.1
objectbox: ^1.5.0
objectbox_sync_flutter_libs: any

dev_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion objectbox/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Flutter database for super-fast NoSQL ACID compliant object persist
homepage: https://objectbox.io
repository: https://github.com/objectbox/objectbox-dart
documentation: https://docs.objectbox.io
version: 1.4.1
version: 1.5.0

environment:
# minimum Dart SDK (also see generator and flutter_libs)
Expand Down
4 changes: 2 additions & 2 deletions sync_flutter_libs/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: objectbox_sync_flutter_libs
description: Fast Flutter database for persisting Dart objects. This package contains Flutter runtime libraries for ObjectBox, including ObjectBox Sync.
repository: https://github.com/objectbox/objectbox-dart
homepage: https://objectbox.io
version: 1.4.1
version: 1.5.0

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

flutter:
Expand Down

0 comments on commit 5fbdef1

Please sign in to comment.