Skip to content

Commit f0f7f75

Browse files
Prepare release 1.4.0
1 parent 0da66a2 commit f0f7f75

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
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.3.0
5+
version: 1.4.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.3.0
14+
objectbox: 1.4.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.3.0
5+
version: 1.4.0
66

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

1010
dependencies:
11-
objectbox: 1.3.0
11+
objectbox: 1.4.0
1212
analyzer: '>=1.1.0 <4.0.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.4.0 (2022-02-22)
22

33
* Support [ObjectBox Admin](https://docs.objectbox.io/data-browser) for Android apps to browse
44
the database. #148

objectbox/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Depending on if you are building a Flutter or Dart-only app, follow the steps be
6565
Add these dependencies to your `pubspec.yaml`:
6666
```yaml
6767
dependencies:
68-
objectbox: ^1.3.0
68+
objectbox: ^1.4.0
6969
objectbox_flutter_libs: any
7070
# for ObjectBox Sync use this dependency instead:
7171
# objectbox_sync_flutter_libs: any
@@ -108,7 +108,7 @@ Continue with the [examples README](example/README.md) to learn how to create en
108108
Add these dependencies to your `pubspec.yaml`:
109109
```yaml
110110
dependencies:
111-
objectbox: ^1.3.0
111+
objectbox: ^1.4.0
112112
113113
dev_dependencies:
114114
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.3.0
14+
objectbox: ^1.4.0
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.3.0
14+
objectbox: ^1.4.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.3.0
6+
version: 1.4.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.3.0
5+
version: 1.4.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.3.0
14+
objectbox: 1.4.0
1515
path_provider: ^2.0.0
1616

1717
flutter:

0 commit comments

Comments
 (0)