Skip to content

Commit

Permalink
0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cmutel committed May 24, 2024
1 parent 74f846b commit c04d7aa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4] - 2024-05-24

Added the following attributes to `Node` dataclasses:

* direct_emissions_score_outside_specific_flows (float): The score attributable to *direct emissions* of this node which isn't broken out into separate `Flow` objects.
* remaining_cumulative_score_outside_specific_flows (float): The *cumulative* score of this node, including direct emissions, which isn't broken out into separate `Flow` objects.
* terminal (bool): Boolean flag indicating whether graph traversal was cutoff at this node

## [0.3.1] - 2024-05-11

* Fix [#18 - Duplication of values from first heuristic](https://github.com/brightway-lca/bw_graph_tools/issues/18)
Expand Down
2 changes: 1 addition & 1 deletion bw_graph_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"to_normalized_adjacency_matrix",
)

__version__ = "0.3.1"
__version__ = "0.4"

from .graph_traversal import (
AssumedDiagonalGraphTraversal,
Expand Down

0 comments on commit c04d7aa

Please sign in to comment.