From 6b5c6e933443952ff2551b518b3bd5aec32ccb87 Mon Sep 17 00:00:00 2001 From: TimoDiepers Date: Wed, 18 Sep 2024 09:14:35 +0200 Subject: [PATCH] v0.2.2 --- CHANGES.md | 6 ++++-- bw_timex/__init__.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 37758d3..c38720a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,8 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] -* Added optional `starting_datetime` argument to `TimexLCA.build_timeline` (https://github.com/brightway-lca/bw_timex/pull/93) -* Allow multiple calls of `build_timeline` using the same `TimexLCA` object, e.g., using different `starting_datetime`s (https://github.com/brightway-lca/bw_timex/pull/94) + +## [0.2.2] - 2024-09-18 +* Added optional `starting_datetime` argument to `TimexLCA.build_timeline` explicitly. Before, it was buried in *args, which were passed to the underlying graph traversal (https://github.com/brightway-lca/bw_timex/pull/93) +* Allow multiple calls of `build_timeline` using the same `TimexLCA` object, e.g., using different `starting_datetime` (https://github.com/brightway-lca/bw_timex/pull/94) * Fixed unintuitive rounding down of timestamps in dynamic characterization. 2024-12-31 would have been rounded to 2024, whereas 2025 makes more sense here. Now we round to the nearest year (https://github.com/brightway-lca/bw_timex/commit/21fa55bbcafee196447840c6518b5fee49fb6660) ## [0.2.1] - 2024-09-16 diff --git a/bw_timex/__init__.py b/bw_timex/__init__.py index 2f7e1f9..9ff127f 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.1" +__version__ = "0.2.2"