From 7a514bbebfb7002899b8d179ee46854261cc3afb Mon Sep 17 00:00:00 2001 From: Markus Date: Thu, 17 Oct 2024 23:16:08 +0200 Subject: [PATCH] Prepare release 4.0.3 --- flutter_libs/pubspec.yaml | 4 ++-- generator/lib/src/version.dart | 2 +- generator/pubspec.yaml | 4 ++-- .../example/dart-native/vectorsearch_cities/pubspec.yaml | 2 +- .../event_management_tutorial/event_manager/pubspec.yaml | 2 +- .../event_management_tutorial/many_to_many/pubspec.yaml | 2 +- objectbox/example/flutter/objectbox_demo/pubspec.yaml | 2 +- .../flutter/objectbox_demo_relations/android/app/build.gradle | 2 +- .../example/flutter/objectbox_demo_relations/pubspec.yaml | 2 +- objectbox/example/flutter/objectbox_demo_sync/pubspec.yaml | 2 +- objectbox/pubspec.yaml | 2 +- sync_flutter_libs/pubspec.yaml | 4 ++-- 12 files changed, 15 insertions(+), 15 deletions(-) diff --git a/flutter_libs/pubspec.yaml b/flutter_libs/pubspec.yaml index ee3c6c3a..cd23368d 100644 --- a/flutter_libs/pubspec.yaml +++ b/flutter_libs/pubspec.yaml @@ -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.2 +version: 4.0.3 environment: sdk: '>=2.18.0 <4.0.0' @@ -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.2 + objectbox: 4.0.3 path_provider: ^2.0.0 dev_dependencies: diff --git a/generator/lib/src/version.dart b/generator/lib/src/version.dart index 786cf2f2..deb429e6 100644 --- a/generator/lib/src/version.dart +++ b/generator/lib/src/version.dart @@ -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.2"; + static const String current = "4.0.3"; } diff --git a/generator/pubspec.yaml b/generator/pubspec.yaml index 83a6edc3..d755efd7 100644 --- a/generator/pubspec.yaml +++ b/generator/pubspec.yaml @@ -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.2 +version: 4.0.3 environment: sdk: '>=2.18.0 <4.0.0' dependencies: - objectbox: 4.0.2 + objectbox: 4.0.3 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 diff --git a/objectbox/example/dart-native/vectorsearch_cities/pubspec.yaml b/objectbox/example/dart-native/vectorsearch_cities/pubspec.yaml index e3d1d086..87394443 100644 --- a/objectbox/example/dart-native/vectorsearch_cities/pubspec.yaml +++ b/objectbox/example/dart-native/vectorsearch_cities/pubspec.yaml @@ -6,7 +6,7 @@ environment: sdk: ^2.18.6 dependencies: - objectbox: ^4.0.2 + objectbox: ^4.0.3 dev_dependencies: build_runner: ^2.4.9 diff --git a/objectbox/example/flutter/event_management_tutorial/event_manager/pubspec.yaml b/objectbox/example/flutter/event_management_tutorial/event_manager/pubspec.yaml index efba779d..42d128e6 100644 --- a/objectbox/example/flutter/event_management_tutorial/event_manager/pubspec.yaml +++ b/objectbox/example/flutter/event_management_tutorial/event_manager/pubspec.yaml @@ -12,7 +12,7 @@ dependencies: flutter: sdk: flutter - objectbox: ^4.0.2 + objectbox: ^4.0.3 objectbox_flutter_libs: any intl: any diff --git a/objectbox/example/flutter/event_management_tutorial/many_to_many/pubspec.yaml b/objectbox/example/flutter/event_management_tutorial/many_to_many/pubspec.yaml index efba779d..42d128e6 100644 --- a/objectbox/example/flutter/event_management_tutorial/many_to_many/pubspec.yaml +++ b/objectbox/example/flutter/event_management_tutorial/many_to_many/pubspec.yaml @@ -12,7 +12,7 @@ dependencies: flutter: sdk: flutter - objectbox: ^4.0.2 + objectbox: ^4.0.3 objectbox_flutter_libs: any intl: any diff --git a/objectbox/example/flutter/objectbox_demo/pubspec.yaml b/objectbox/example/flutter/objectbox_demo/pubspec.yaml index 9ba3659d..276eba60 100644 --- a/objectbox/example/flutter/objectbox_demo/pubspec.yaml +++ b/objectbox/example/flutter/objectbox_demo/pubspec.yaml @@ -9,7 +9,7 @@ environment: dependencies: flutter: sdk: flutter - objectbox: ^4.0.2 + objectbox: ^4.0.3 objectbox_flutter_libs: any intl: any path_provider: ^2.0.10 diff --git a/objectbox/example/flutter/objectbox_demo_relations/android/app/build.gradle b/objectbox/example/flutter/objectbox_demo_relations/android/app/build.gradle index dfcc7549..b974810b 100644 --- a/objectbox/example/flutter/objectbox_demo_relations/android/app/build.gradle +++ b/objectbox/example/flutter/objectbox_demo_relations/android/app/build.gradle @@ -47,7 +47,7 @@ android { // You can update the following values to match your application needs. // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration. // minSdkVersion flutter.minSdkVersion - minSdkVersion 19 // ObjectBox requires at least SDK 19 (Android 4.4) + minSdkVersion flutter.minSdkVersion // ObjectBox requires at least SDK 19 (Android 4.4) targetSdkVersion flutter.targetSdkVersion versionCode flutterVersionCode.toInteger() versionName flutterVersionName diff --git a/objectbox/example/flutter/objectbox_demo_relations/pubspec.yaml b/objectbox/example/flutter/objectbox_demo_relations/pubspec.yaml index 87a7a523..bacccdad 100644 --- a/objectbox/example/flutter/objectbox_demo_relations/pubspec.yaml +++ b/objectbox/example/flutter/objectbox_demo_relations/pubspec.yaml @@ -9,7 +9,7 @@ environment: dependencies: flutter: sdk: flutter - objectbox: ^4.0.2 + objectbox: ^4.0.3 objectbox_flutter_libs: any intl: any path_provider: ^2.0.10 # 2.0.11+ requires Flutter 2.8.0 diff --git a/objectbox/example/flutter/objectbox_demo_sync/pubspec.yaml b/objectbox/example/flutter/objectbox_demo_sync/pubspec.yaml index bf83b9f5..3b631515 100644 --- a/objectbox/example/flutter/objectbox_demo_sync/pubspec.yaml +++ b/objectbox/example/flutter/objectbox_demo_sync/pubspec.yaml @@ -9,7 +9,7 @@ environment: dependencies: flutter: sdk: flutter - objectbox: ^4.0.2 + objectbox: ^4.0.3 objectbox_sync_flutter_libs: any # For Sync support use this instead of objectbox_flutter_libs. intl: any path_provider: ^2.0.10 diff --git a/objectbox/pubspec.yaml b/objectbox/pubspec.yaml index c5ec1c6a..bfea4c36 100644 --- a/objectbox/pubspec.yaml +++ b/objectbox/pubspec.yaml @@ -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.2 +version: 4.0.3 environment: # minimum Dart SDK (also see generator and flutter_libs) diff --git a/sync_flutter_libs/pubspec.yaml b/sync_flutter_libs/pubspec.yaml index e2c200bb..21e15d07 100644 --- a/sync_flutter_libs/pubspec.yaml +++ b/sync_flutter_libs/pubspec.yaml @@ -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.2 +version: 4.0.3 environment: sdk: '>=2.18.0 <4.0.0' @@ -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.2 + objectbox: 4.0.3 path_provider: ^2.0.0 dev_dependencies: