diff --git a/CHANGELOG.md b/CHANGELOG.md index 6060004..ae93871 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.1] - 2024-05-23 + +### Fixed + +- No auto-space is inserted after selecting a word from suggestion #36 + ## [0.9.0] - 2024-05-03 ### Added @@ -285,7 +291,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Intiial release -[unreleased]: https://github.com/tmaegel/ntodotxt/compare/v0.9.0...HEAD +[unreleased]: https://github.com/tmaegel/ntodotxt/compare/v0.9.1...HEAD +[0.9.1]: https://github.com/tmaegel/ntodotxt/compare/v0.9.0...v0.9.1 [0.9.0]: https://github.com/tmaegel/ntodotxt/compare/v0.8.1...v0.9.0 [0.8.1]: https://github.com/tmaegel/ntodotxt/compare/v0.8.0...v0.8.1 [0.8.0]: https://github.com/tmaegel/ntodotxt/compare/v0.7.1...v0.8.0 diff --git a/lib/constants/app.dart b/lib/constants/app.dart index 2e3d66b..68f1228 100644 --- a/lib/constants/app.dart +++ b/lib/constants/app.dart @@ -1,6 +1,6 @@ // coverage:ignore-file -const String version = '0.9.0'; +const String version = '0.9.1'; /// https://m3.material.io/foundations/layout/applying-layout/window-size-classes const int maxScreenWidthCompact = 600; diff --git a/pubspec.yaml b/pubspec.yaml index 1bb8a49..39c96ea 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,11 +1,10 @@ --- name: ntodotxt -description: App for managing your todos within a todo.txt file locally or via webdav (e.g. Nextcloud) - -publish_to: 'none' # Remove this line if you wish to publish to pub.dev -version: 0.9.0+21 +description: App for managing your todos within a todo.txt file locally or via webdav (e.g. Nextcloud) +publish_to: 'none' # Remove this line if you wish to publish to pub.dev +version: 0.9.1+22 environment: sdk: '>=3.0.5 <4.0.0' @@ -52,6 +51,7 @@ flutter_launcher_icons: min_sdk_android: 21 flutter: + uses-material-design: true assets: - assets/icon/icon.png fonts: @@ -59,5 +59,3 @@ flutter: fonts: - asset: fonts/OpenSans-VariableFont_wdth,wght.ttf - asset: fonts/OpenSans-Italic-VariableFont_wdth,wght.ttf - - uses-material-design: true