From fdbb4214b4bf448265c981c7837cd0e594531a7b Mon Sep 17 00:00:00 2001 From: Nicholas Long <1907354+nllong@users.noreply.github.com> Date: Fri, 18 Aug 2023 09:54:40 -0600 Subject: [PATCH] Prep for prerelease 0.6.0 (#578) * prerelease * add in changelog notes --- .cspell.json | 9 ++++++++- CHANGELOG.rst | 30 ++++++++++++++++++++++++------ pyproject.toml | 2 +- 3 files changed, 33 insertions(+), 8 deletions(-) diff --git a/.cspell.json b/.cspell.json index 4ddfd4188..199164238 100644 --- a/.cspell.json +++ b/.cspell.json @@ -9,20 +9,27 @@ "dassl", "dymola", "GDHC", + "Jing", "levelname", "libfortran", "linecount", "mfrt", + "microgrid", + "Modelica", "MODELICAPATH", "mofile", + "nllong", "openstudio", + "Optimica", "oversizing", "redeclarations", "Reparse", "setpoint", + "tanushree", "timeseries", "timestep", - "urbanopt" + "urbanopt", + "vtnate" ], "flagWords": [ "hte" diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 661fa278f..d46a86085 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,9 +1,27 @@ Change Log ========== +Version 0.6.0 RC1 +----------------- +## What's Changed +### Exciting New Features 🎉 +* Enable numberOfIntervals run option by @nllong in https://github.com/urbanopt/geojson-modelica-translator/pull/562 +* Breakout package parser class by @nllong in https://github.com/urbanopt/geojson-modelica-translator/pull/566 +* Add a new GHE district test with new network template models by @JingWang-CUB in https://github.com/urbanopt/geojson-modelica-translator/pull/561 +* Add GHE Properties to System Parameter File by @tanushree04 in https://github.com/urbanopt/geojson-modelica-translator/pull/570 +* Use `filNam` parameter for TEASER loads and add within parsing to PackageParser by @nllong in https://github.com/urbanopt/geojson-modelica-translator/pull/574 +* Add new `ModelicaProject` class by @nllong in https://github.com/urbanopt/geojson-modelica-translator/pull/575 +* Add Dymola runner by @nllong in https://github.com/urbanopt/geojson-modelica-translator/pull/577 + +### Other Changes +* Read correct data from sys-param for microgrid electrical load by @vtnate in https://github.com/urbanopt/geojson-modelica-translator/pull/560 +* remove ground loads from system parameter by @tanushree04 in https://github.com/urbanopt/geojson-modelica-translator/pull/576 + +**Full Changelog**: https://github.com/urbanopt/geojson-modelica-translator/compare/0.5.0...v0.6.0-rc1 + + Version 0.5.0 ------------- - ## What's Changed ### Exciting New Features 🎉 * Python 3.11 support by @vtnate in https://github.com/urbanopt/geojson-modelica-translator/pull/518 @@ -45,9 +63,9 @@ Exciting New Features 🎉 * Redeclare the teaser model to use buildings.media.air medium * Fmu runner * Spawn docker named args -* Compile & run with spawn & optimica +* Compile & run with Spawn & Optima * Microgrid lines -* Add 5g to sysparams +* Add 5G to System Parameters file * Weather file at top level * Test with 3.10 * 4G or 5G timeseries in Dymola @@ -55,10 +73,10 @@ Other Changes * Breakout run in docker command * Better error message if modelica timeseries files from sdk are not found * Break out build and simulate tests -* Use mblv9 +* Use Modelica Buildings Library (MBL) v9.0.0 * Point tests to latest mbl release * Cli less brittle -* Run compilation tasks on CI using spawn Modelica and optimica +* Run compilation tasks on CI using spawn Modelica and Optimica * Update schema.json Version 0.3.0 @@ -98,7 +116,7 @@ Version 0.2.0 ------------- * Add ETS data for indirect cooling to system parameters schema * Add district system example -* Add time series model using massflow rates and temperatures +* Add time series model using mass flow rates and temperatures * Add district heating (1GDH and 4GDH) and heating indirect ETS * Add district cooling (4GDC) and cooling indirect ETS * Add distribution network diff --git a/pyproject.toml b/pyproject.toml index bc3a4b3fd..4c15a2882 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "geojson-modelica-translator" -version = "0.5.0" +version = "0.6.0-rc1" description = "Package for converting GeoJSON to Modelica models for Urban Scale Analyses." authors = ["URBANopt DES Team "] license = "BSD-4-Clause"