Skip to content

Commit

Permalink
Prepare release 4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot-team committed May 27, 2024
1 parent 93efa5f commit a4c88f2
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 16 deletions.
4 changes: 2 additions & 2 deletions flutter_libs/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Superfast NoSQL Flutter / Dart database. This package contains Flut
# Link to actual directory in repository so file links on pub.dev work.
repository: https://github.com/objectbox/objectbox-dart/tree/main/flutter_libs
homepage: https://objectbox.io
version: 4.0.0
version: 4.0.1

environment:
sdk: '>=2.18.0 <4.0.0'
Expand All @@ -14,7 +14,7 @@ dependencies:
sdk: flutter
# 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: 4.0.0
objectbox: 4.0.1
path_provider: ^2.0.0

dev_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion generator/lib/src/version.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ class Version {
///
/// This string is updated by the /tool/set-version.sh script
/// as part of the release process.
static const String current = "4.0.0";
static const String current = "4.0.1";
}
4 changes: 2 additions & 2 deletions generator/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ description: ObjectBox Flutter / Dart database binding code generator - finds an
# Link to actual directory in repository so file links on pub.dev work.
repository: https://github.com/objectbox/objectbox-dart/tree/main/generator
homepage: https://objectbox.io
version: 4.0.0
version: 4.0.1

environment:
sdk: '>=2.18.0 <4.0.0'

dependencies:
objectbox: 4.0.0
objectbox: 4.0.1
analyzer: '>=5.2.0 <7.0.0' # 5.1.0 has a bug where DartType.element has been removed.
build: ^2.0.0
collection: ^1.15.0
Expand Down
8 changes: 6 additions & 2 deletions objectbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
## latest
## 4.0.1 (2024-05-27)

* Export `ObjectWithScore` and `IdWithScore` used by the new find with score `Query` methods. [#637]
* Export `ObjectWithScore` and `IdWithScore` used by the new find with score `Query` methods. [#637](https://github.com/objectbox/objectbox-dart/issues/637)
* Add simple `vectorsearch_cities` Dart Native example application.

Note: this release includes the same versions of the Android library and ObjectBox pod as
[release 4.0.0](https://github.com/objectbox/objectbox-dart/releases/tag/v4.0.0).
See update instructions there.

## 4.0.0 (2024-05-15)

**To upgrade to this major release** run `flutter pub upgrade objectbox --major-versions`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ environment:
sdk: ^2.18.6

dependencies:
objectbox: ^4.0.0
objectbox: ^4.0.1

dev_dependencies:
build_runner: ^2.4.9
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies:
flutter:
sdk: flutter

objectbox: ^4.0.0
objectbox: ^4.0.1
objectbox_flutter_libs: any
intl: any

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies:
flutter:
sdk: flutter

objectbox: ^4.0.0
objectbox: ^4.0.1
objectbox_flutter_libs: any
intl: any

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 @@ -9,7 +9,7 @@ environment:
dependencies:
flutter:
sdk: flutter
objectbox: ^4.0.0
objectbox: ^4.0.1
objectbox_flutter_libs: any
intl: any
path_provider: ^2.0.10
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ environment:
dependencies:
flutter:
sdk: flutter
objectbox: ^4.0.0
objectbox: ^4.0.1
objectbox_flutter_libs: any
intl: any
path_provider: ^2.0.10 # 2.0.11+ requires Flutter 2.8.0
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 @@ -9,7 +9,7 @@ environment:
dependencies:
flutter:
sdk: flutter
objectbox: ^4.0.0
objectbox: ^4.0.1
objectbox_sync_flutter_libs: any # For Sync support use this instead of objectbox_flutter_libs.
intl: any
path_provider: ^2.0.10
Expand Down
2 changes: 1 addition & 1 deletion objectbox/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ homepage: https://objectbox.io
# Link to actual directory in repository so file links on pub.dev work.
repository: https://github.com/objectbox/objectbox-dart/tree/main/objectbox
documentation: https://docs.objectbox.io
version: 4.0.0
version: 4.0.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 @@ -3,7 +3,7 @@ description: Fast Flutter database for persisting Dart objects. This package con
# Link to actual directory in repository so file links on pub.dev work.
repository: https://github.com/objectbox/objectbox-dart/tree/main/sync_flutter_libs
homepage: https://objectbox.io
version: 4.0.0
version: 4.0.1

environment:
sdk: '>=2.18.0 <4.0.0'
Expand All @@ -14,7 +14,7 @@ dependencies:
sdk: flutter
# 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: 4.0.0
objectbox: 4.0.1
path_provider: ^2.0.0

dev_dependencies:
Expand Down

0 comments on commit a4c88f2

Please sign in to comment.