diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f0ef4f..ed58a17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.5] - 2024-02-03 + +### Changed + +- Bump flutter version to 3.16.9 +- Update some dialogs + +### Fixed + +- Server port for the webdav connection is optional #12 #17 +- Sometimes the hamburger menu gets lost #18 +- dense attribute is not neccessary for material3 themes + ## [0.4.4] - 2024-01-16 ### Changed @@ -110,7 +123,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.4.4...HEAD +[unreleased]: https://github.com/tmaegel/ntodotxt/compare/v0.4.5...HEAD +[0.4.5]: https://github.com/tmaegel/ntodotxt/compare/v0.4.4...v0.4.5 [0.4.4]: https://github.com/tmaegel/ntodotxt/compare/v0.4.3...v0.4.4 [0.4.3]: https://github.com/tmaegel/ntodotxt/compare/v0.4.2...v0.4.3 [0.4.2]: https://github.com/tmaegel/ntodotxt/compare/v0.4.1...v0.4.2 diff --git a/lib/constants/app.dart b/lib/constants/app.dart index 2f495a6..7aa5605 100644 --- a/lib/constants/app.dart +++ b/lib/constants/app.dart @@ -1,6 +1,6 @@ // coverage:ignore-file -const String version = '0.4.4'; +const String version = '0.4.5'; /// https://m3.material.io/foundations/layout/applying-layout/window-size-classes const int maxScreenWidthCompact = 600; diff --git a/pubspec.yaml b/pubspec.yaml index 3ac7348..e6bee08 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -5,7 +5,7 @@ description: App for managing your todos within a todo.txt file locally or via w publish_to: 'none' # Remove this line if you wish to publish to pub.dev -version: 0.4.4+8 +version: 0.4.5+9 environment: sdk: '>=3.0.5 <4.0.0'