From f9406349608d495695e44fcb61269d672ca12690 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Apr 2024 09:16:06 +0200 Subject: [PATCH] chore(main): release 8.13.0 (#426) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- docs/docs/changelog/changelog.md | 29 +++++++++++++++++++++++++++++ pyproject.toml | 2 +- src/libecalc/version.py | 2 +- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/docs/docs/changelog/changelog.md b/docs/docs/changelog/changelog.md index 317855d79e..1cf44dd777 100644 --- a/docs/docs/changelog/changelog.md +++ b/docs/docs/changelog/changelog.md @@ -1,5 +1,34 @@ # Changelog +## [8.13.0](https://github.com/equinor/ecalc/compare/v8.12.0...v8.13.0) (2024-04-15) + + +### ⚠ BREAKING CHANGES + +* add type and multiple emissions for venting emitters ([#424](https://github.com/equinor/ecalc/issues/424)) + +### Bug Fixes + +* a few things that were left out when the failure_status were refactored ([#432](https://github.com/equinor/ecalc/issues/432)) ([1e4acce](https://github.com/equinor/ecalc/commit/1e4acced3c41b628b133811c345a5488e5eeea8d)) + + +### Documentation + +* add changelog for 8.12 release ([effaf85](https://github.com/equinor/ecalc/commit/effaf851241fa9a88143b8187767a6faeb6fd316)) +* correct links for LOAD and FUELRATE keywords ([#428](https://github.com/equinor/ecalc/issues/428)) ([1df541a](https://github.com/equinor/ecalc/commit/1df541ae858104f23814c7c495fddb177f9c5e54)) +* update changelog and migration guide for v8.4 ([#430](https://github.com/equinor/ecalc/issues/430)) ([5f74621](https://github.com/equinor/ecalc/commit/5f7462190a4311db941fb44506228571363a56d5)) + + +### Miscellaneous Chores + +* add type and multiple emissions for venting emitters ([#424](https://github.com/equinor/ecalc/issues/424)) ([4603dc4](https://github.com/equinor/ecalc/commit/4603dc4a6940661ca8c5d14778c1cdf65a941f76)) +* update documentation to reflect that None is not a valid choice for pressure control ([#427](https://github.com/equinor/ecalc/issues/427)) ([6ff1f2a](https://github.com/equinor/ecalc/commit/6ff1f2a63632c66df49781ea0060f8b487ae20e5)) + + +### Tests + +* add test for total power ([#433](https://github.com/equinor/ecalc/issues/433)) ([a79e44e](https://github.com/equinor/ecalc/commit/a79e44e3bbdaf5b72d539ea491f8414599c37b3c)) + ## [8.12.0](https://github.com/equinor/ecalc/compare/v8.11.0...v8.12.0) (2024-04-04) diff --git a/pyproject.toml b/pyproject.toml index 85134b317e..688243ce21 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.12.0" # x-release-please-version +version = "8.13.0" # 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 9e848a977f..2f9bc1896a 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.12.0" # x-release-please-version +__version__ = "8.13.0" # x-release-please-version # END DO NOT EDIT