diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d5e0233..366c603c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,11 @@ Many thanks to my sponsors, no matter how much or how little they donated. Spons # Changelog -## [9.0.0] - "Just Another Rewrite" - 2024/04/XX +## [9.0.1] - 2024/04/29 + +* Fixed bug on initialisation, where using multiple/background `FlutterEngine`s would attempt to re-open a single ObjectBox Store (aka. root) multiple times + +## [9.0.0] - "Just Another Rewrite" - 2024/04/11 This update has essentially rewritten FMTC from the ground up, over hundreds of hours. It focuses on: diff --git a/example/pubspec.yaml b/example/pubspec.yaml index f1f7825b..07e902db 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -3,7 +3,7 @@ description: The example application for 'flutter_map_tile_caching', showcasing it's functionality and use-cases. publish_to: "none" -version: 9.0.0 +version: 9.0.1 environment: sdk: ">=3.3.0 <4.0.0" @@ -15,10 +15,9 @@ dependencies: better_open_file: ^3.6.5 collection: ^1.18.0 dart_earcut: ^1.1.0 - file_picker: ^8.0.0+1 + file_picker: ^8.0.3 flutter: sdk: flutter - flutter_foreground_task: ^6.1.3 flutter_map: ^6.1.0 flutter_map_animations: ^0.6.0 flutter_map_tile_caching: @@ -29,7 +28,7 @@ dependencies: latlong2: ^0.9.1 osm_nominatim: ^3.0.0 path: ^1.9.0 - path_provider: ^2.1.2 + path_provider: ^2.1.3 provider: ^6.1.2 stream_transform: ^2.1.0 validators: ^3.0.0 diff --git a/pubspec.yaml b/pubspec.yaml index f3084559..c5dcaf69 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: flutter_map_tile_caching description: Plugin for 'flutter_map' providing advanced caching functionality, with ability to download map regions for offline use. -version: 9.0.0 +version: 9.0.1 repository: https://github.com/JaffaKetchup/flutter_map_tile_caching issue_tracker: https://github.com/JaffaKetchup/flutter_map_tile_caching/issues @@ -40,11 +40,11 @@ dependencies: objectbox: ^2.5.1 objectbox_flutter_libs: ^2.5.1 path: ^1.9.0 - path_provider: ^2.1.2 + path_provider: ^2.1.3 dev_dependencies: - build_runner: ^2.4.8 - objectbox_generator: ^2.5.0 + build_runner: ^2.4.9 + objectbox_generator: ^2.5.1 test: ^1.25.2 flutter: null diff --git a/windowsApplicationInstallerSetup.iss b/windowsApplicationInstallerSetup.iss index a2b52f32..f4e68140 100644 --- a/windowsApplicationInstallerSetup.iss +++ b/windowsApplicationInstallerSetup.iss @@ -1,7 +1,7 @@ ; Script generated by the Inno Setup Script Wizard #define MyAppName "FMTC Demo" -#define MyAppVersion "for 9.0.0" +#define MyAppVersion "for 9.0.1" #define MyAppPublisher "JaffaKetchup Development" #define MyAppURL "https://github.com/JaffaKetchup/flutter_map_tile_caching" #define MyAppSupportURL "https://github.com/JaffaKetchup/flutter_map_tile_caching/issues"