Skip to content

Commit

Permalink
Prepare release 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot-team committed Jun 27, 2022
1 parent 98ab078 commit 866e4b9
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 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.5.0
version: 1.6.0

environment:
sdk: ">=2.14.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.5.0
objectbox: 1.6.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.5.0
version: 1.6.0

environment:
sdk: '>=2.14.0 <3.0.0'

dependencies:
objectbox: 1.5.0
objectbox: 1.6.0
analyzer: '>=1.1.0 <4.0.0'
build: ^2.0.0
collection: ^1.15.0
Expand Down
2 changes: 1 addition & 1 deletion objectbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## latest
## 1.6.0 (2022-06-27)

* Require at least Dart SDK 2.14 (shipped with Flutter 2.5.0).
* When using the "All Exceptions" debug option in Visual Studio Code there is no longer an exception
Expand Down
4 changes: 2 additions & 2 deletions objectbox/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ We also have some video tutorials, each featuring a different example app:
Add these dependencies to your `pubspec.yaml`:
```yaml
dependencies:
objectbox: ^1.5.0
objectbox: ^1.6.0
objectbox_flutter_libs: any
# for ObjectBox Sync use this dependency instead:
# objectbox_sync_flutter_libs: any
Expand Down Expand Up @@ -137,7 +137,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.5.0
objectbox: ^1.6.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 @@ -9,7 +9,7 @@ environment:
dependencies:
flutter:
sdk: flutter
objectbox: ^1.5.0
objectbox: ^1.6.0
objectbox_flutter_libs: any
intl: any

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ environment:
dependencies:
flutter:
sdk: flutter
objectbox: ^1.5.0
objectbox: ^1.6.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 @@ -9,7 +9,7 @@ environment:
dependencies:
flutter:
sdk: flutter
objectbox: ^1.5.0
objectbox: ^1.6.0
objectbox_sync_flutter_libs: any # For Sync support use this instead of objectbox_flutter_libs.
intl: any

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.5.0
version: 1.6.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.5.0
version: 1.6.0

environment:
sdk: ">=2.14.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.5.0
objectbox: 1.6.0
path_provider: ^2.0.0

flutter:
Expand Down

0 comments on commit 866e4b9

Please sign in to comment.