From df37a7d6571bd132e5965eb6e0f2e4251a42fac7 Mon Sep 17 00:00:00 2001 From: TimoDiepers Date: Tue, 24 Sep 2024 14:54:56 +0200 Subject: [PATCH] v0.2.4 --- CHANGES.md | 3 +++ bw_timex/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 2abee86..ff600b5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.4] - 2024-09-24 +* Added support for passing Node objects to `bw_timex.utils.get_exchange` and `bw_timex.utils.add_temporal_distribution_to_exchange`. + ## [0.2.3] - 2024-09-22 * Modified the date rounding behavior: Instead of always rounding off the dates in the timeline (using the resolution specified in temporal_grouping), we now round to the nearest year/month/day/hour (depending on temporal_grouping). * Fixed interface to dynamic_characterization (see https://github.com/brightway-lca/dynamic_characterization/releases/tag/v1.0.0) and pinned version to >=1.0.0. diff --git a/bw_timex/__init__.py b/bw_timex/__init__.py index 742e2c1..7576ab1 100644 --- a/bw_timex/__init__.py +++ b/bw_timex/__init__.py @@ -5,4 +5,4 @@ from .timeline_builder import TimelineBuilder from .timex_lca import TimexLCA -__version__ = "0.2.3" +__version__ = "0.2.4"