Skip to content

Commit

Permalink
1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cmutel committed May 12, 2024
1 parent 3db6d68 commit 6c83d42
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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).

## [1.0.RC1] - 2024-05-11
## [1.0] - 2024-05-12

* First complete release

## [1.0.RC1] - 2024-05-11

* First complete release candidate
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ bwa.AggregatedDatabase.convert_existing("<database label>")

From now on, calling `bw2data.Database("<database label>")` will return an instance of `AggregatedDatabase`. You can do everything you normally would with this database, including making changes.

> :warning: Any **existing `Database("<database label>")` reference is out of date**: You need to create new `Database` object references.
> :warning: Any **existing `Database("<database label>")` reference is out of date**: You need to create new `Database` class instances.
The conversion command will also set the default to use the aggregated values during calculations. You can change the default back to using unit process data with:

Expand Down Expand Up @@ -134,9 +134,9 @@ This library gets the possibility of using both aggregated and unit process data
```
if global_context is True:
load_aggregated()
elif local_context(me) is True:
elif local_context(this_database) is True:
load_aggregated()
elif me.perfer_aggregated is True:
elif this_database.prefer_aggregated is True:
load_aggregated()
else:
load_unit_process()
Expand Down
2 changes: 1 addition & 1 deletion bw_aggregation/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"Speedup",
)

__version__ = "1.0.RC1"
__version__ = "1.0"


from bw2data.backends import Activity
Expand Down

0 comments on commit 6c83d42

Please sign in to comment.