From 6b7011d1d9949cdc17bc22cebd6e678dac892d5d Mon Sep 17 00:00:00 2001 From: Nathan Moore Date: Mon, 28 Oct 2024 12:51:32 -0600 Subject: [PATCH] V0.8.0 prep (#671) * bump to version 0.8.0 * changelog for v0.8.0 * Fix typo in CHANGELOG.md Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com> --------- Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com> --- CHANGELOG.md | 22 ++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c84151c7..270e4a020 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Change Log +## Version 0.8.0 + +### Exciting New Features 🎉 +* Add default cop values for 5G district heat pump efficiencies by @vtnate in https://github.com/urbanopt/geojson-modelica-translator/pull/640 +* Support international weather locations by @vtnate in https://github.com/urbanopt/geojson-modelica-translator/pull/654 +* Support multiple GHEs in a single district by @vtnate in https://github.com/urbanopt/geojson-modelica-translator/pull/644 +* Adds method to process modelica results by @tanushree04 in https://github.com/urbanopt/geojson-modelica-translator/pull/646 +* Simplify sys params to closer match reality by @vtnate in https://github.com/urbanopt/geojson-modelica-translator/pull/659 +* Templates and tests for horizontal piping modeling by @JingWang-CUB in https://github.com/urbanopt/geojson-modelica-translator/pull/627 +* Support single building DES templates by @nllong in https://github.com/urbanopt/geojson-modelica-translator/pull/670 + +### Other Changes +* Improve cli typing & validation by @vtnate in https://github.com/urbanopt/geojson-modelica-translator/pull/662 +* Add detail to Docker setup docs for Windows users by @vtnate in https://github.com/urbanopt/geojson-modelica-translator/pull/643 +* Use the correct ETS heat pump COP by @vtnate in https://github.com/urbanopt/geojson-modelica-translator/pull/642 +* Use feature ids in load names instead of simple_uuid by @vtnate in https://github.com/urbanopt/geojson-modelica-translator/pull/652 +* Remove alfalfa from conftest.py by @nllong in https://github.com/urbanopt/geojson-modelica-translator/pull/665 +* Update version of Jinja by @nllong in https://github.com/urbanopt/geojson-modelica-translator/pull/667 +* Clean up sys-param code that reads parameters by @vtnate in https://github.com/urbanopt/geojson-modelica-translator/pull/668 + +**Full Changelog**: https://github.com/urbanopt/geojson-modelica-translator/compare/v0.7.0...v0.8.0 + ## Version 0.7.0 ### Exciting New Features 🎉 diff --git a/pyproject.toml b/pyproject.toml index 5d33b1655..70b5f0099 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "geojson-modelica-translator" -version = "0.8.0-rc1" +version = "0.8.0" description = "Package for converting GeoJSON to Modelica models for urban scale analyses." authors = ["URBANopt DES Team "] license = "BSD-4-Clause"