Skip to content

Commit 49dc7cb

Browse files
committed
set version to 0.15.0
1 parent 4f1f122 commit 49dc7cb

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

flutter_libs/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: objectbox_flutter_libs
2-
version: 0.14.0
2+
version: 0.15.0
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: 0.14.0
14+
objectbox: 0.15.0
1515

1616
flutter:
1717
plugin:

generator/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: objectbox_generator
2-
version: 0.14.0
2+
version: 0.15.0
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: 0.14.0
11+
objectbox: 0.15.0
1212
analyzer: ^1.1.0
1313
build: ^2.0.0
1414
collection: ^1.15.0

objectbox/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## latest
1+
## 0.15.0-dev.3 (2021-05-14)
22

33
This is a 1.0 release candidate - please try it out and give us any last-minute feedback, especially to new and changed APIs.
44

objectbox/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Add the following dependencies to start using ObjectBox and code generator.
5959

6060
```yaml
6161
dependencies:
62-
objectbox: ^0.14.0
62+
objectbox: ^0.15.0
6363
objectbox_flutter_libs: any
6464

6565
dev_dependencies:
@@ -75,7 +75,7 @@ dev_dependencies:
7575

7676
```yaml
7777
dependencies:
78-
objectbox: ^0.14.0
78+
objectbox: ^0.15.0
7979
8080
dev_dependencies:
8181
build_runner: ^2.0.0
@@ -125,7 +125,7 @@ of your app smaller. For more information about the sizes, see the following tab
125125
ObjectBox v0.14.0 and Flutter v2.0.5 release builds (using the [recommended](https://flutter.dev/docs/deployment/android#build-an-apk)
126126
`flutter build apk --split-per-abi` to build APKs for each ABI):
127127

128-
| Release | without ObjectBox | with ObjectBox | Difference |
128+
| Release | without ObjectBox | with ObjectBox | difference |
129129
| ----------------------------------------- | ----------------: | ------------------------: | ------------: |
130130
| APK (default compressed, arm64-v8a) | 5.5 MiB | 6.0 MiB<sup>1</sup> | +0.5 MiB |
131131
| APK (uncompressed, arm64-v8a)<sup>2</sup> | 12.0 MiB | 13.5 MiB | **+1.5 MiB** |

objectbox/example/flutter/objectbox_demo/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
cupertino_icons: any
1313
path_provider: ^2.0.0
1414
intl: any
15-
objectbox: ^0.14.0
15+
objectbox: ^0.15.0
1616
objectbox_flutter_libs: any
1717

1818
dev_dependencies:

objectbox/example/flutter/objectbox_demo_sync/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
cupertino_icons: any
1313
path_provider: ^2.0.0
1414
intl: any
15-
objectbox: ^0.14.0
15+
objectbox: ^0.15.0
1616
objectbox_sync_flutter_libs: any
1717

1818
dev_dependencies:

objectbox/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: objectbox
2-
version: 0.14.0
2+
version: 0.15.0
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: objectbox_sync_flutter_libs
2-
version: 0.14.0
2+
version: 0.15.0
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: 0.14.0
14+
objectbox: 0.15.0
1515

1616
flutter:
1717
plugin:

0 commit comments

Comments
 (0)