From 3e3d1325a93b583200de6dea2a967d69634ce7fb Mon Sep 17 00:00:00 2001 From: John Jasa Date: Mon, 28 Oct 2024 09:19:56 -0600 Subject: [PATCH 1/2] Update RELEASE.md --- RELEASE.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index 92a1e41ea..77cfe0924 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,10 @@ # Release Notes +## Version 3.1, Oct. 28, 2024 +* Added [Cambium](https://www.nrel.gov/analysis/cambium.html) and [GREET](https://www.energy.gov/eere/greet) integration for LCA analysis +* Updated examples throughout +* Removed package dependencies to streamline installation on Windows + ## Version 3.0, Oct. 18th, 2024 * Updated to use pyproject for package management * Adopted FLORIS v4 @@ -93,4 +98,4 @@ * Hybrid simulation combining mixes of wind & pv * Flicker modeling * Derivative-free optimization framework -* Balance-of-station cost model \ No newline at end of file +* Balance-of-station cost model From ac1c1a21974e558f71bfcb0f34ce63ef3087798f Mon Sep 17 00:00:00 2001 From: John Jasa Date: Mon, 28 Oct 2024 09:22:29 -0600 Subject: [PATCH 2/2] bump version to 3.1 --- hopp/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hopp/__init__.py b/hopp/__init__.py index 81c511ae6..8e95bd71a 100644 --- a/hopp/__init__.py +++ b/hopp/__init__.py @@ -1,9 +1,9 @@ from pathlib import Path -__version__ = "3.0" +__version__ = "3.1" ROOT_DIR = Path(__file__).resolve().parent # environment variable used to specify a testing environment -TEST_ENV_VAR="TEST" \ No newline at end of file +TEST_ENV_VAR="TEST"