From b71bca7b592699b39a118047c51b49a3c5749946 Mon Sep 17 00:00:00 2001 From: lbvienna Date: Thu, 2 Nov 2023 10:33:57 -0400 Subject: [PATCH] 2.0.2 --- CHANGELOG.md | 4 ++++ setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6587453..0874ab74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 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) + ## 2.0.1 (10/23/2023) - chore: updating all required packages to their latest versions and addressing some warnings that surfaced during testing [#81](https://github.com/washingtonpost/elex-live-model/pull/81) - fix: CLI no longer throws an error if `aggregates` are missing or specified with columns that don't exist in the data [#83](https://github.com/washingtonpost/elex-live-model/pull/83) diff --git a/setup.py b/setup.py index cfefc72a..10da11c7 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.1" +RELEASE = "2.0.2" # The short X.Y version VERSION = ".".join(RELEASE.split(".")[:2])