From 4d37e69ad4b715b341dbf6db43d4bc355da26f0a Mon Sep 17 00:00:00 2001 From: "Christopher C. Wells" Date: Tue, 25 Jul 2023 17:42:23 -0700 Subject: [PATCH] Create v2.0.3 release --- CHANGELOG.md | 9 +++++++++ babybuddy/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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__