diff --git a/CHANGES.md b/CHANGES.md index f6c10a8..41714bf 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5] - 2024-09-25 + +* Don't assume `delete` section present in biosphere mappings + ## [0.4.1] - 2024-09-05 * Use `conversion_factor` instead of `allocation` for `replace` transformations diff --git a/ecoinvent_migrate/__init__.py b/ecoinvent_migrate/__init__.py index c171972..66a7a67 100644 --- a/ecoinvent_migrate/__init__.py +++ b/ecoinvent_migrate/__init__.py @@ -6,6 +6,6 @@ "generate_biosphere_mapping", ) -__version__ = "0.4.1" +__version__ = "0.5" from .main import generate_biosphere_mapping, generate_technosphere_mapping