diff --git a/CHANGELOG.md b/CHANGELOG.md index bd7e73aa70..c371c351aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +- 2023-09-07 - 3.34.0 - #3378 Change sensor value orientation before saving +- 2023-09-06 - 3.34.0 - #3377 Release 3.34.0 +- 2023-09-06 - 3.33.0 - #3374 Update MacOS installation guide +- 2023-09-05 - 3.33.0 - #3366 Adding automated batch-processing options +- 2023-09-05 - 3.33.0 - #3370 Unified default settings +- 2023-08-31 - 3.33.0 - #3354 Embodied update +- 2023-08-25 - 3.33.0 - #3364 Read weather file with encoding +- 2023-07-28 - 3.33.0 - #3356 Replace whitespaces with underscore in building name +- 2023-07-26 - 3.33.0 - #3340 Change selection process to prevent duplicates +- 2023-07-26 - 3.33.0 - #3342 Changed COP for DH geothermal heatpumps +- 2023-07-26 - 3.33.0 - #3348 Fix optimization KeyError +- 2023-07-26 - 3.33.0 - #3353 Fix typo that caused `roof_grid` parameter to be ignored +- 2023-07-01 - 3.33.0 - #3336 Migrate github actions to `setup-micromamba` +- 2023-06-30 - 3.33.0 - #3335 Update lines of code badge +- 2023-06-29 - 3.33.0 - #3333 Release 3.33.0 - 2023-06-28 - 3.32.0 - #3331 Fix EV input validation in editor - 2023-06-28 - 3.32.0 - #3324 Fixed deap-creator error - 2023-06-28 - 3.32.0 - #3306 Read and write sensor data using feather instead of json @@ -885,3 +900,4 @@ - 2016-04-01 - 0.1 - #115 I37 extract properties tool etc - 2016-03-31 - 0.1 - #106 Ii023 atot - 2016-03-30 - 0.1 - #103 I099 new properties - seems to be working for now... + diff --git a/CREDITS.md b/CREDITS.md index 067a81adb7..f4387c4334 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -1,7 +1,7 @@ How to Cite =========== -The CEA team, "City Energy Analyst v3.34.0", Zenodo, 2023, 10.5281/zenodo.8321871 +The CEA team, "City Energy Analyst v3.34.1", Zenodo, 2023, 10.5281/zenodo.8327389 The CEA team ============ @@ -11,6 +11,45 @@ and split into the categories of developers, product owner, project sponsor and +- Version 3.34.1 - September 2023 + + Developers: + * [Amr Elesawy](https://cityenergyanalyst.com/people) + * [Jimeno A. Fonseca](https://cityenergyanalyst.com/people) + * [Gabriel Happle](https://cityenergyanalyst.com/people) + * [Shanshan Hsieh](https://cityenergyanalyst.com/people) + * [Reynold Mok](https://cityenergyanalyst.com/people) + * [Martín Mosteiro Romero](https://cityenergyanalyst.com/people) + * [Mathias Niffeler](https://cityenergyanalyst.com/people) + * [Anastasiya Popova](https://cityenergyanalyst.com/people) + * [Zhongming Shi](https://cityenergyanalyst.com/people) + * [Luis Santos](https://cityenergyanalyst.com/people) + * [Bhargava Krishna Sreepathi](https://cityenergyanalyst.com/people) + * [Daren Thomas](https://cityenergyanalyst.com/people) + + Product lead: + * [Zhongming Shi](https://cityenergyanalyst.com/people) + + Product sponsor: + * [Arno Schlueter](https://systems.arch.ethz.ch/arno-schlueter) + * [Toni Piëch Foundation](https://www.tonipiechfoundation.org/) + + Collaborators: + * Jose Bello + * Kian Wee Chen + * Jack Hawthorne + * Fazel Khayatian + * Victor Marty + * Rowan Molony + * Paul Neitzel + * Thuy-An Nguyen + * Bo Lie Ong + * Emanuel Riegelbauer + * Lennart Rogenhofer + * Toivo Säwén + * Sebastian Troiztsch + * Tim Vollrath + - Version 3.34.0 - September 2023 Developers: diff --git a/README.rst b/README.rst index df80d2cae4..7063c7d0a7 100644 --- a/README.rst +++ b/README.rst @@ -6,8 +6,8 @@ :alt: Repo Size .. |lines_of_code| image:: https://img.shields.io/tokei/lines/github/architecture-building-systems/CityEnergyAnalyst :alt: Lines of code -.. |zenodo| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.8321871.svg - :target: https://doi.org/10.5281/zenodo.8321871 +.. |zenodo| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.8327389.svg + :target: https://doi.org/10.5281/zenodo.8327389 .. image:: cea_logo.png :height: 420 px @@ -35,4 +35,4 @@ We invite all CEA users to get acquainted with the CEA Dashboard and CEA Console Cite us: -------- -For V3.34.0 (stable): https://doi.org/10.5281/zenodo.8321871 +For V3.34.1 (stable): https://doi.org/10.5281/zenodo.8327389 diff --git a/cea/__init__.py b/cea/__init__.py index f0891aaf31..0d750ff9f7 100644 --- a/cea/__init__.py +++ b/cea/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.34.0" +__version__ = "3.34.1" class ConfigError(Exception):