diff --git a/CHANGELOG.md b/CHANGELOG.md index ecc36769a..181e945e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [v2.0.3](https://github.com/babybuddy/babybuddy/tree/v2.0.3) (2023-07-25) + +[Full Changelog](https://github.com/babybuddy/babybuddy/compare/v2.0.2...v2.0.3) + +**Fixed bugs:** + +- Missing table on fresh 2.0.2 install [\#687](https://github.com/babybuddy/babybuddy/issues/687) +- Move cache table creation to a migration [\#688](https://github.com/babybuddy/babybuddy/pull/688) ([cdubz](https://github.com/cdubz)) + ## [v2.0.2](https://github.com/babybuddy/babybuddy/tree/v2.0.2) (2023-07-17) [Full Changelog](https://github.com/babybuddy/babybuddy/compare/v2.0.1...v2.0.2) diff --git a/babybuddy/__init__.py b/babybuddy/__init__.py index 531fc8802..67f4aa2d8 100644 --- a/babybuddy/__init__.py +++ b/babybuddy/__init__.py @@ -46,7 +46,7 @@ """ # noqa __title__ = "Baby Buddy" -__version__ = "2.0.2" +__version__ = "2.0.3" __license__ = "BSD 2-Clause" VERSION = __version__