Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 9.3.0 #725

Merged
merged 1 commit into from
Dec 19, 2024
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
34 changes: 34 additions & 0 deletions docs/docs/changelog/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# Changelog

## [9.3.0](https://github.com/equinor/ecalc/compare/v9.2.0...v9.3.0) (2024-12-19)


### Bug Fixes

* delta profile when 2 result sets have different periods ([#741](https://github.com/equinor/ecalc/issues/741)) ([52359f1](https://github.com/equinor/ecalc/commit/52359f1a6bff1e3e097f08429602314fe804a1e2))
* don't raise error when missing time series on token collection ([65d417a](https://github.com/equinor/ecalc/commit/65d417aeeac4c3d03ae86418bbf04d84579a25ff))
* electricity consumer was not included in duplicate names ([e3e1e6a](https://github.com/equinor/ecalc/commit/e3e1e6a864cb24ea7dc0519f4a8adb9c8cffc31c))
* ensure emission names are unique ([2bbb989](https://github.com/equinor/ecalc/commit/2bbb989e166783f48f710df4c1f8b0de045586ef))
* ensure unique names across facility_inputs and models ([0b5e0ce](https://github.com/equinor/ecalc/commit/0b5e0ce4fc3adf69e1508e2f768eae67a31f2d9a))
* ensure unique time_series names ([813b500](https://github.com/equinor/ecalc/commit/813b5006878fa4fce9b960cbefa58c81dae7324f))


### Documentation

* remove api reference ([#732](https://github.com/equinor/ecalc/issues/732)) ([a56ac26](https://github.com/equinor/ecalc/commit/a56ac26b3a792742a44039c233a74d9615844c50))


### Miscellaneous Chores

* minor fixes in builders ([9b54325](https://github.com/equinor/ecalc/commit/9b54325fe8c21d2e02da7b20b3ef2002febe3f96))
* mypy fixes ([add6842](https://github.com/equinor/ecalc/commit/add6842514daa33a9139598d81887889b38dab56))
* pin ubuntu runner images ([ccbfe69](https://github.com/equinor/ecalc/commit/ccbfe69369413831d6130ebd22b1eca2d06dfc1d))
* update pre-commit to v4 ([#742](https://github.com/equinor/ecalc/issues/742)) ([8542c6b](https://github.com/equinor/ecalc/commit/8542c6b015922e50f554180be7f315f447d9a2ac))
* upgrade dependencies for week 49. Auto-generated by devCalc ([fe2a52e](https://github.com/equinor/ecalc/commit/fe2a52e6cdda3ee8924886e6d95f5289dd8b129d))
* upgrade dependencies for week 50. Auto-generated by devCalc ([#733](https://github.com/equinor/ecalc/issues/733)) ([1390f21](https://github.com/equinor/ecalc/commit/1390f21c541fe035c32951f1005fc618194967ec))
* upgrade dependencies for week 51. Auto-generated by devCalc ([#744](https://github.com/equinor/ecalc/issues/744)) ([48d4bb2](https://github.com/equinor/ecalc/commit/48d4bb2cdfc29e9af9f70ed73eb6f4dc4891f49f))


### Code Refactoring

* move to energy components ([#737](https://github.com/equinor/ecalc/issues/737)) ([f9cf0da](https://github.com/equinor/ecalc/commit/f9cf0da22ea3d9fc2ed9dc8952a979bec8912305))
* remove unused core specs ([eab4920](https://github.com/equinor/ecalc/commit/eab4920148e7f80dbda5a41a10d411588c39d739))

## [9.2.0](https://github.com/equinor/ecalc/compare/v9.1.0...v9.2.0) (2024-11-29)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "libecalc"
# DO_NOT_EDIT: Version number automatically changed in CICD
version = "9.2.0" # x-release-please-version
version = "9.3.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"]
Expand Down
2 changes: 1 addition & 1 deletion src/libecalc/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from libecalc.common.version import Version

# DO NOT EDIT - replaced in CI with release please
__version__ = "9.2.0" # x-release-please-version
__version__ = "9.3.0" # x-release-please-version
# END DO NOT EDIT


Expand Down