Skip to content

Commit f53455e

Browse files
authored
Merge pull request #279 from PyO3/release-1.5.0
release: 1.5.0
2 parents b244fe7 + c6915e0 commit f53455e

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

.bumpversion.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[bumpversion]
22
commit = True
33
tag = False
4-
current_version = 1.4.1
4+
current_version = 1.5.0
5+
message = release: {new_version}
56

67
[bumpversion:file:setup.cfg]
78

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Changelog
22

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

77
### Changed
88
- 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)

noxfile.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,3 +113,9 @@ def test_examples_emscripten(session: nox.Session):
113113

114114
with session.chdir(emscripten_dir):
115115
session.run("node", "runner.js", str(example), external=True)
116+
117+
118+
@nox.session(name="bump-version")
119+
def bump_version(session: nox.Session) -> None:
120+
session.install("bump2version")
121+
session.run("bumpversion", *session.posargs)

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = setuptools-rust
3-
version = 1.4.1
3+
version = 1.5.0
44
author = Nikolay Kim
55
author_email = [email protected]
66
license = MIT

setuptools_rust/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = version = "1.4.1"
1+
__version__ = version = "1.5.0"
22
__version_tuple__ = version_tuple = tuple(
33
map(lambda x: int(x[1]) if x[0] < 3 else x[1], enumerate(__version__.split(".")))
44
)

0 commit comments

Comments
 (0)