Skip to content

Commit

Permalink
Prepare release 4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot-team committed Aug 14, 2024
1 parent 23f0c23 commit 27b29f8
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 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.1
version: 4.0.2

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.1
objectbox: 4.0.2
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.1";
static const String current = "4.0.2";
}
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.1
version: 4.0.2

environment:
sdk: '>=2.18.0 <4.0.0'

dependencies:
objectbox: 4.0.1
objectbox: 4.0.2
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
## 4.0.2 (2024-08-14)

* Sync: support option to enable [shared global IDs](https://sync.objectbox.io/advanced/object-ids#shared-global-ids).

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.1
objectbox: ^4.0.2

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.1
objectbox: ^4.0.2
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.1
objectbox: ^4.0.2
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.1
objectbox: ^4.0.2
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.1
objectbox: ^4.0.2
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.1
objectbox: ^4.0.2
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.1
version: 4.0.2

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.1
version: 4.0.2

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.1
objectbox: 4.0.2
path_provider: ^2.0.0

dev_dependencies:
Expand Down

0 comments on commit 27b29f8

Please sign in to comment.