diff --git a/docs/docs/changelog/changelog.md b/docs/docs/changelog/changelog.md index 6d5ecad965..66ad80fc56 100644 --- a/docs/docs/changelog/changelog.md +++ b/docs/docs/changelog/changelog.md @@ -1,5 +1,22 @@ # Changelog +## [8.6.1](https://github.com/equinor/ecalc/compare/v8.6.0...v8.6.1) (2023-11-24) + + +### Bug Fixes + +* bug in compressor with turbine models with multiple streams and only one date ([#297](https://github.com/equinor/ecalc/issues/297)) ([a1a24f1](https://github.com/equinor/ecalc/commit/a1a24f1ff0a8336d29930ccb0dc78ab0d471299d)) + + +### Miscellaneous Chores + +* fix typo ([a1a24f1](https://github.com/equinor/ecalc/commit/a1a24f1ff0a8336d29930ccb0dc78ab0d471299d)) + + +### Code Refactoring + +* change emission rate type to calendar day ([#300](https://github.com/equinor/ecalc/issues/300)) ([#301](https://github.com/equinor/ecalc/issues/301)) ([6465e9d](https://github.com/equinor/ecalc/commit/6465e9d7d25779c37eed93973f02fb5181429953)) + ## [8.6.0](https://github.com/equinor/ecalc/compare/v8.5.0...v8.6.0) (2023-11-21) diff --git a/pyproject.toml b/pyproject.toml index 49961a36a6..05dea3cc49 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.6.0" # x-release-please-version +version = "8.6.1" # 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 7d07d2a34f..5158bb851e 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.6.0" # x-release-please-version +__version__ = "8.6.1" # x-release-please-version # END DO NOT EDIT