Skip to content

Commit

Permalink
release: 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhewitt committed Aug 9, 2022
1 parent b244fe7 commit c6915e0
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
@@ -1,7 +1,8 @@
[bumpversion]
commit = True
tag = False
current_version = 1.4.1
current_version = 1.5.0
message = release: {new_version}

[bumpversion:file:setup.cfg]

Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
@@ -1,8 +1,8 @@
# Changelog

## Unreleased
## 1.5.0 (2022-08-09)
### Added
- Add support for extension modules built for wasm32-unknown-emscripten with Pyodide.
- Add support for extension modules built for wasm32-unknown-emscripten with Pyodide. [#244](https://github.com/PyO3/setuptools-rust/pull/244)

### Changed
- Locate cdylib artifacts by handling messages from cargo instead of searching target dir (fixes build on MSYS2). [#267](https://github.com/PyO3/setuptools-rust/pull/267)
Expand Down
6 changes: 6 additions & 0 deletions noxfile.py
Expand Up @@ -113,3 +113,9 @@ def test_examples_emscripten(session: nox.Session):

with session.chdir(emscripten_dir):
session.run("node", "runner.js", str(example), external=True)


@nox.session(name="bump-version")
def bump_version(session: nox.Session) -> None:
session.install("bump2version")
session.run("bumpversion", *session.posargs)
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = setuptools-rust
version = 1.4.1
version = 1.5.0
author = Nikolay Kim
author_email = fafhrd91@gmail.com
license = MIT
Expand Down
2 changes: 1 addition & 1 deletion setuptools_rust/version.py
@@ -1,4 +1,4 @@
__version__ = version = "1.4.1"
__version__ = version = "1.5.0"
__version_tuple__ = version_tuple = tuple(
map(lambda x: int(x[1]) if x[0] < 3 else x[1], enumerate(__version__.split(".")))
)

0 comments on commit c6915e0

Please sign in to comment.