Skip to content

Commit ad4184c

Browse files
committed
prepare v0.14.0
1 parent bd3843f commit ad4184c

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
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: 0.13.0
2+
version: 0.14.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.13.0
14+
objectbox: 0.14.0
1515

1616
flutter:
1717
plugin:

generator/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: objectbox_generator
2-
version: 0.13.0+1
2+
version: 0.14.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.13.0
11+
objectbox: 0.14.0
1212
analyzer: ^1.1.0
1313
build: ^2.0.0
1414
collection: ^1.15.0

objectbox/CHANGELOG.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
## latest
1+
## 0.14.0 (2021-04-01)
22

3-
* Fix non-nullable Date fields deserialization regression (introduced in v0.13.0) - fields were read as DateNano.
4-
* Respect string property query distinct `count()` result (was same as case-sensitive).
5-
* Query `findFirst()` doesn't overwrite `offset` and `limit` anymore.
3+
* Fix non-nullable `DateTime` fields deserialization regression (introduced in v0.13.0) - fields were read as nanosecond instead of millisecond timestamp.
4+
* Respect case-sensitivity setting in string `PropertyQuery.count()` with `distinct = true` (the result was always like with `caseSensitive = true`).
5+
* Query `findFirst()` doesn't change `Query` object's `offset` and `limit` anymore.
66
* Change Query string conditions `caseSensitive` default to `true`, previously conditions were case-insensitive by default.
7-
* Introduce Store constructor argument `queriesCaseSensitiveDefault` allowing to change the default behaviour of `caseSensitive` argument.
8-
* Store-configured `queriesCaseSensitiveDefault` is now also the default for string property queries when using `distinct = true`.
9-
* Get around Flutter's Android release build issue by changing the offending code.
10-
* Remove deprecated APIs from internal plugin interfaces (Flutter build notified about them).
11-
* Generator - update dependencies to their null-safe versions
7+
* Introduce Store constructor argument `queriesCaseSensitiveDefault` - allows changing the default value of `caseSensitive` in queries.
8+
This includes string `PropertyQuery` when using `distinct = true`.
9+
* Get around Flutter's Android release build issue by changing the code the compiler had trouble with.
10+
* Remove deprecated APIs from internal plugin interfaces (deprecation notice printed during Flutter build).
11+
* Generator - update dependencies to their null-safe versions.
1212
* Generated code - avoid more linter issues.
1313

1414
## 0.13.0 (2021-03-19)

objectbox/README.md

+2-2
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.13.0
62+
objectbox: ^0.14.0
6363
objectbox_flutter_libs: any
6464

6565
dev_dependencies:
@@ -74,7 +74,7 @@ dev_dependencies:
7474

7575
```yaml
7676
dependencies:
77-
objectbox: ^0.13.0
77+
objectbox: ^0.14.0
7878
7979
dev_dependencies:
8080
build_runner: ^1.0.0

objectbox/example/flutter/objectbox_demo/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
cupertino_icons: ^0.1.2
1313
path_provider: ^2.0.0
1414
intl: any
15-
objectbox: ^0.13.0
15+
objectbox: ^0.14.0
1616
objectbox_flutter_libs: any
1717

1818
dev_dependencies:

objectbox/example/flutter/objectbox_demo_sync/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
cupertino_icons: ^0.1.2
1313
path_provider: ^2.0.0
1414
intl: any
15-
objectbox: ^0.13.0
15+
objectbox: ^0.14.0
1616
objectbox_sync_flutter_libs: any
1717

1818
dev_dependencies:

objectbox/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: objectbox
2-
version: 0.13.0
2+
version: 0.14.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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: objectbox_sync_flutter_libs
2-
version: 0.13.0
2+
version: 0.14.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.13.0
14+
objectbox: 0.14.0
1515

1616
flutter:
1717
plugin:

0 commit comments

Comments
 (0)