diff --git a/CHANGELOG.md b/CHANGELOG.md index 0874ab74..e84a4084 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.0.3 (11/06/2023) +- fix: fix print bug for aggregate model called states error [#90](https://github.com/washingtonpost/elex-live-model/pull/90) +- chore: add predicted turnout to predictions dataframe [#91](https://github.com/washingtonpost/elex-live-model/pull/91) + ## 2.0.2 (11/02/2023) - fix: allow bootstrap model parameters to be of type int as well as float [#86](https://github.com/washingtonpost/elex-live-model/pull/86) - fix: pass alpha to national summary client function [#87](https://github.com/washingtonpost/elex-live-model/pull/87) diff --git a/setup.py b/setup.py index 10da11c7..79508f1a 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ LONG_DESCRIPTION = f.read() # The full version, including alpha/beta/rc tags -RELEASE = "2.0.2" +RELEASE = "2.0.3" # The short X.Y version VERSION = ".".join(RELEASE.split(".")[:2])