Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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...

41 changes: 40 additions & 1 deletion CREDITS.md
Original file line number Diff line number Diff line change
@@ -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
============
Expand All @@ -11,6 +11,45 @@ and split into the categories of developers, product owner, project sponsor and


<!-- credits -->
- 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:
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion cea/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.34.0"
__version__ = "3.34.1"


class ConfigError(Exception):
Expand Down