Skip to content

Commit

Permalink
Prepare release 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot-team committed Mar 1, 2022
1 parent f7b7069 commit 622dee5
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 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.0
version: 1.4.1

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.0
objectbox: 1.4.1
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.0
version: 1.4.1

environment:
sdk: '>=2.12.0 <3.0.0'

dependencies:
objectbox: 1.4.0
objectbox: 1.4.1
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.4.1 (2022-03-01)

* Resolve "another store is still open" issue after Flutter hot restart (hot reload continues to work). #387
* Add `Store.isClosed()`. #390
Expand Down
4 changes: 2 additions & 2 deletions objectbox/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Depending on if you are building a Flutter or Dart-only app, follow the steps be
Add these dependencies to your `pubspec.yaml`:
```yaml
dependencies:
objectbox: ^1.4.0
objectbox: ^1.4.1
objectbox_flutter_libs: any
# for ObjectBox Sync use this dependency instead:
# objectbox_sync_flutter_libs: any
Expand Down Expand Up @@ -108,7 +108,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.0
objectbox: ^1.4.1
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.0
objectbox: ^1.4.1
objectbox_flutter_libs: any

dev_dependencies:
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.0
objectbox: ^1.4.1
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.0
version: 1.4.1

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.0
version: 1.4.1

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.0
objectbox: 1.4.1
path_provider: ^2.0.0

flutter:
Expand Down

0 comments on commit 622dee5

Please sign in to comment.