From cfcd47b841f8626f2e6be0cce03be240c8d0f303 Mon Sep 17 00:00:00 2001 From: TimoDiepers Date: Fri, 7 Feb 2025 10:58:53 +0100 Subject: [PATCH] v0.3.0 --- CHANGES.md | 5 +++++ bw_timex/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 8ba61e0..ef1d3a2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0] - 2025-02-07 +* Renamed various variables. The main user-facing API change is `database_date_dict` -> `database_dates`. Others are mainly internal, see https://github.com/brightway-lca/bw_timex/commit/991943cd0ea9c0185baace3b84c75abd46b4bd59 and https://github.com/brightway-lca/bw_timex/commit/554a67cc7796264be888840c1c9431f64952fd66. +* Added a function to disaggregate the background LCI. This means that the aggregated biosphere flows of the upstream supply chains of temporal markets are distributed back to the original producers from the background database. +* Various speed improvements + ## [0.2.6] - 2024-09-25 * Fixed rounding in dynamic_lcia to avoid duplicate entries in dynamic inventory diff --git a/bw_timex/__init__.py b/bw_timex/__init__.py index 83e9ae8..f97acca 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.8" +__version__ = "0.3.0"