Skip to content

Commit ade55f4

Browse files
committed
set version to 1.1.1
1 parent 96e9d36 commit ade55f4

File tree

8 files changed

+13
-14
lines changed

8 files changed

+13
-14
lines changed

flutter_libs/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: objectbox_flutter_libs
2-
version: 1.1.0
2+
version: 1.1.1
33
repository: https://github.com/objectbox/objectbox-dart
44
homepage: https://objectbox.io
55
description: ObjectBox is a super-fast NoSQL ACID compliant object database. This package contains flutter runtime libraries for ObjectBox.
@@ -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.1.0
14+
objectbox: 1.1.1
1515
path_provider: ^2.0.0
1616

1717
flutter:

generator/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: objectbox_generator
2-
version: 1.1.0
2+
version: 1.1.1
33
repository: https://github.com/objectbox/objectbox-dart
44
homepage: https://objectbox.io
55
description: ObjectBox binding code generator - finds annotated entities and adds them to the ObjectBox DB model.
@@ -8,7 +8,7 @@ environment:
88
sdk: '>=2.12.0 <3.0.0'
99

1010
dependencies:
11-
objectbox: 1.1.0
11+
objectbox: 1.1.1
1212
analyzer: ^1.1.0
1313
build: ^2.0.0
1414
collection: ^1.15.0

objectbox/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## latest
1+
## 1.1.1 (2021-07-09)
22

33
* Add support for `Query.param()` on linked entities.
44
* Fix generated `openStore()` for apps that don't enable null-safety yet.

objectbox/README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ class Person {
2828
Person({this.id = 0, required this.firstName, required this.lastName});
2929
}
3030
31-
// Note: in Flutter you also need to specify a directory, see examples.
32-
final store = Store(getObjectBoxModel());
31+
final store = await openStore();
3332
final box = store.box<Person>();
3433
3534
var person = Person(firstName: 'Joe', lastName: 'Green');
@@ -59,7 +58,7 @@ Add the following dependencies to start using ObjectBox and code generator.
5958

6059
```yaml
6160
dependencies:
62-
objectbox: ^1.1.0
61+
objectbox: ^1.1.1
6362
objectbox_flutter_libs: any
6463

6564
dev_dependencies:
@@ -89,7 +88,7 @@ dev_dependencies:
8988

9089
```yaml
9190
dependencies:
92-
objectbox: ^1.1.0
91+
objectbox: ^1.1.1
9392
9493
dev_dependencies:
9594
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.1.0
14+
objectbox: ^1.1.1
1515
objectbox_flutter_libs: any
1616

1717
dev_dependencies:

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.1.0
14+
objectbox: ^1.1.1
1515
objectbox_sync_flutter_libs: any
1616

1717
dev_dependencies:

objectbox/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: objectbox
2-
version: 1.1.0
2+
version: 1.1.1
33
repository: https://github.com/objectbox/objectbox-dart/tree/main/objectbox
44
homepage: https://objectbox.io
55
description: ObjectBox is a super-fast NoSQL ACID compliant object database.

sync_flutter_libs/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: objectbox_sync_flutter_libs
2-
version: 1.1.0
2+
version: 1.1.1
33
repository: https://github.com/objectbox/objectbox-dart
44
homepage: https://objectbox.io
55
description: ObjectBox is a super-fast NoSQL ACID compliant object database. This package contains flutter runtime libraries for ObjectBox, including ObjectBox Sync.
@@ -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.1.0
14+
objectbox: 1.1.1
1515
path_provider: ^2.0.0
1616

1717
flutter:

0 commit comments

Comments
 (0)