diff --git a/README.md b/README.md index cb8d556e0..c9b4c968f 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ models for all libraries supporting the ## Version -TEASER is a ongoing research project, the current version is 0.7.2, which is +TEASER is a ongoing research project, the current version is 0.7.3, which is still a pre-release. ## How to use TEASER diff --git a/doc/conf.py b/doc/conf.py index 330370cf6..c7b70f3c7 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -58,7 +58,7 @@ # The short X.Y version. version = "0.7." # The full version, including alpha/beta/rc tags. -release = "0.7.1" +release = "0.7.3" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 1b317568e..e7067db41 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="teaser", - version="0.7.2", + version="0.7.3", description="Tool for Energy Analysis and Simulation for " "Efficient Retrofit ", url="https://github.com/RWTH-EBC/TEASER", author="RWTH Aachen University, E.ON Energy Research Center, " diff --git a/teaser/logic/buildingobjects/buildingsystems/buildingahu.py b/teaser/logic/buildingobjects/buildingsystems/buildingahu.py index 3fa75fc04..830832de9 100644 --- a/teaser/logic/buildingobjects/buildingsystems/buildingahu.py +++ b/teaser/logic/buildingobjects/buildingsystems/buildingahu.py @@ -163,7 +163,7 @@ def max_relative_humidity_profile(self): def max_relative_humidity_profile(self, value): if not isinstance(value, list): value = [value] - self._min_relative_humidity_profile = value + self._max_relative_humidity_profile = value self.schedules["max_relative_humidity_profile"] = list( islice(cycle(value), 8760) )