Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.6.2 (2026-04-15)

* Version bump; 4.6.1 was not published to PyPI

## 4.6.1 (2026-04-15)

* [#259: Fix Windows file handle leaks in `delete_project` and `change_path`](https://github.com/brightway-lca/brightway2-data/pull/259)
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,16 @@ $ pip install bw2data
Contributions are very welcome.
To learn more, see the [Contributor Guide][Contributor Guide].

## Releasing a new version

1. Create a release branch: `git checkout -b release/X.Y.Z`
2. Update `__version__` in `bw2data/__init__.py`
3. Update `CHANGES.md` with the release date and links to merged PRs
4. Commit, push the branch, and open a PR
5. Push the tag to trigger PyPI publication: `git tag X.Y.Z && git push origin X.Y.Z`

The tag push triggers the GitHub Actions deploy workflow, which builds and publishes the package to PyPI using trusted publishing.

## License

Distributed under the terms of the [BSD 3 Clause license][License],
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.6.1"
__version__ = "4.6.2"

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