Skip to content

Commit

Permalink
4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cmutel committed Dec 3, 2024
1 parent 26c40e8 commit f68d01e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# `bw2data` Changelog

## 4.3 (2024-12-03)

* BREAKING CHANGE: Removed looking up node attributes in reference product edges using `node['foo']` (i.e. `node.__getitem__()`). The code searching for reference product edges was incorrect - when it was correct to search for both functional inputs and outputs, there was a severe performance degradation as all edges needed to be loaded and examined.

## 4.2.1 (2024-12-03)

* Make `__version__` a tuple again to avoid breaking downstream libraries
Expand Down
2 changes: 1 addition & 1 deletion bw2data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"weightings",
]

__version__ = (4, 2, 1)
__version__ = (4, 3)

from bw2data.configuration import config, labels
from bw2data.project import projects
Expand Down

0 comments on commit f68d01e

Please sign in to comment.