diff --git a/CHANGELOG.md b/CHANGELOG.md index c2774e4a..2a028073 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # Changelog +### 2.0.1 - 2023-10-20 +- chore: Updated all required packages to their latest versions. Added `numpy` as a requirement. [#14](https://github.com/washingtonpost/elex-solver/pull/14) + ### 2.0.0 - 2023-09-22 - feat: adding ordinary least squares regression solver. Updating quantile regression to solve dual [#11](https://github.com/washingtonpost/elex-solver/pull/11) @@ -30,7 +33,3 @@ - Normalizing weights ### Initial release - 2022-01-24 - - - - \ No newline at end of file diff --git a/setup.py b/setup.py index a85eab39..15340bfa 100644 --- a/setup.py +++ b/setup.py @@ -13,13 +13,13 @@ LONG_DESCRIPTION = f.read() # The full version, including alpha/beta/rc tags -RELEASE = "2.0.0" +RELEASE = "2.0.1" # The short X.Y version VERSION = ".".join(RELEASE.split(".")[:2]) PROJECT = "elex-solver" AUTHOR = "The Wapo Newsroom Engineering Team" -COPYRIGHT = "2021, {}".format(AUTHOR) +COPYRIGHT = "2023, {}".format(AUTHOR) setup(