diff --git a/docs/docs/changelog/changelog.md b/docs/docs/changelog/changelog.md index b2b96a1828..9ae81de036 100644 --- a/docs/docs/changelog/changelog.md +++ b/docs/docs/changelog/changelog.md @@ -1,5 +1,12 @@ # Changelog +## [8.4.4](https://github.com/equinor/ecalc/compare/v8.4.3...v8.4.4) (2023-10-09) + + +### Bug Fixes + +* handle requested pressures correct for compressors without system correctly ([#233](https://github.com/equinor/ecalc/issues/233)) ([#234](https://github.com/equinor/ecalc/issues/234)) ([d07c6d2](https://github.com/equinor/ecalc/commit/d07c6d259d60775ba505f4ed4eeba3ae34af8e7d)) + ## [8.4.3](https://github.com/equinor/ecalc/compare/v8.4.2...v8.4.3) (2023-10-04) diff --git a/pyproject.toml b/pyproject.toml index 2b864abbcb..05c092bbdb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "libecalc" # DO_NOT_EDIT: Version number automatically changed in CICD -version = "8.4.3" # x-release-please-version +version = "8.4.4" # x-release-please-version # END_DO_NOT_EDIT description = "eCalcâ„¢ is a software tool for calculation of energy demand and greenhouse gas (GHG) emissions from oil and gas production and processing." keywords = ["energy", "emission", "scientific", "engineering"] diff --git a/src/libecalc/version.py b/src/libecalc/version.py index 7d90f9d8b1..fc9b1abd8d 100644 --- a/src/libecalc/version.py +++ b/src/libecalc/version.py @@ -1,7 +1,7 @@ from libecalc.common.version import Version # DO NOT EDIT - replaced in CI with release please -__version__ = "8.4.3" # x-release-please-version +__version__ = "8.4.4" # x-release-please-version # END DO NOT EDIT