From 752996809c4bce207474acd7ca117cd306a1c23d Mon Sep 17 00:00:00 2001 From: Jason Chulock Date: Fri, 1 Sep 2023 18:27:54 +0000 Subject: [PATCH] Bump version Signed-off-by: Jason Chulock --- CHANGELOG.md | 24 +++++++++++------------- eemeter/__version__.py | 2 +- 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ecd9bb4f..64097d44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ Changelog Development ----------- +* Placeholder + +3.2.0 +----- + +* Addition of modules and amendments in support of international facility for EEMeter, including principally: +* Addition of quickstart.py; updating setup.py and __init__/py accordingly. +* Inclusion of temperature conversion amendments to design_matrices; features; and derivatives. +* Addition of new tests and samples. +* Amendments to tutorial.ipynb. +* Addition of eemeter international.ipynb. * Change .iteritems() to .items() in accordance with pandas>=2.0.0 * .get_loc(x, method=...) to .get_indexer([x],method=...)[0] in accordance with pandas>=2.0.0 * Updated mean() to mean(numeric_only=True) in accordance to pandas>=2.0.0 @@ -15,22 +26,9 @@ Development * Update pytests to account for changes in newer pandas where categorical variables are no longer included in `df.sum().sum()`. * Clarify the functioning of start, end and max_days parameters to `get_reporting_data()` and `get_baseline_data()`. - -* 3.1.2 ------ - -* Addition of modules and amendments in support of international facility for EEMeter, including principally: -* Addition of quickstart.py; updating setup.py and __init__/py accordingly. -* Inclusion of temperature conversion amendments to design_matrices; features; and derivatives. -* Addition of new tests and samples. -* Amendments to tutorial.ipynb. -* Addition of eemeter international.ipynb. - - 3.1.1 ----- - * Update observed_mean calculation to account for solar (negative usage) to provide sensible cvrmse calculations. diff --git a/eemeter/__version__.py b/eemeter/__version__.py index b54d4a78..6490ec92 100644 --- a/eemeter/__version__.py +++ b/eemeter/__version__.py @@ -20,7 +20,7 @@ __title__ = "eemeter" __description__ = "Open Energy Efficiency Meter" __url__ = "http://github.com/openeemeter/eemeter" -__version__ = "3.1.1" +__version__ = "3.2.0" __author__ = "Phil Ngo" __author_email__ = "admin@openee.io" __license__ = "Apache 2.0"