Skip to content

Commit

Permalink
Prepare release 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot-team committed Feb 14, 2024
1 parent ea046b6 commit 11493d9
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 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: 2.4.0
version: 2.5.0

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: 2.4.0
objectbox: 2.5.0
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 = "2.4.0";
static const String current = "2.5.0";
}
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: 2.4.0
version: 2.5.0

environment:
sdk: '>=2.18.0 <4.0.0'

dependencies:
objectbox: 2.4.0
objectbox: 2.5.0
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
2 changes: 1 addition & 1 deletion objectbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## latest
## 2.5.0 (2024-02-14)

* Support creating file-less in-memory databases, for example for caching or testing. To create one
pass an in-memory identifier together with `Store.inMemoryPrefix` as the `directory`:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies:
flutter:
sdk: flutter

objectbox: ^2.4.0
objectbox: ^2.5.0
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: ^2.4.0
objectbox: ^2.5.0
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: ^2.4.0
objectbox: ^2.5.0
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: ^2.4.0
objectbox: ^2.5.0
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: ^2.4.0
objectbox: ^2.5.0
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: 2.4.0
version: 2.5.0

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: 2.4.0
version: 2.5.0

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: 2.4.0
objectbox: 2.5.0
path_provider: ^2.0.0

dev_dependencies:
Expand Down

0 comments on commit 11493d9

Please sign in to comment.