Skip to content

Commit aab90f8

Browse files
committed
Prep 7.0.1
1 parent 3a6aa41 commit aab90f8

File tree

8 files changed

+24
-16
lines changed

8 files changed

+24
-16
lines changed

.github/workflows/wheels.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,9 @@ jobs:
2222
python3 -c "import pathlib,glob;pathlib.Path('GITHUB_ENV').write_text('SDIST_PATH' + glob.glob('dist/*.tar.gz')[0])"
2323
2424
- name: Build wheels
25-
uses: pypa/[email protected].1
25+
uses: pypa/[email protected].3
2626
env:
27-
CIBW_BUILD:
28-
"cp39-* cp310-* cp311-* cp312-* cp313-* pp310-* pp311-*"
29-
# "cp38-* cp39-* cp310-* cp311-* cp312-* cp313-*"
27+
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-* cp313-* pp310-* pp311-*"
3028
CIBW_TEST_COMMAND: "python -m pymunk.tests"
3129
# CIBW_BUILD_VERBOSITY: 3
3230
with:
@@ -57,7 +55,7 @@ jobs:
5755
- uses: actions/checkout@v4
5856
with:
5957
submodules: true
60-
- uses: pypa/[email protected].2
58+
- uses: pypa/[email protected].3
6159
env:
6260
CIBW_PLATFORM: pyodide
6361
PYMUNK_BUILD_SLIM: 1

CHANGELOG.rst

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,19 @@
22
Changelog
33
=========
44

5-
.. NEXT
6-
- Experimentally Build wheels for iOS (Issue #276)
7-
- Fix all(?) issues calling remove in separate callbacks (Issue #247)
8-
5+
Pymunk 7.0.1 (2025-06-07)
6+
-------------------------
7+
8+
**Minor fixes and experimental iOS wheel!**
9+
10+
This is a minor patch release, which adds experimental iOS wheels, minor bug
11+
fix and fixes the verison number that was wrong in the previous release.
12+
13+
Changes:
14+
15+
- Experimentally Build wheels for iOS (Issue #276)
16+
- Fix all(?) issues calling remove in separate callbacks (Issue #247)
17+
- Fixed pymunk.version version number.
918

1019

1120
Pymunk 7.0.0 (2025-05-28)

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ authors:
55
given-names: "Victor"
66
title: "Pymunk"
77
abstract: "A easy-to-use pythonic rigid body 2d physics library"
8-
version: 7.0.0
9-
date-released: 2025-05-28
8+
version: 7.0.1
9+
date-released: 2025-06-07
1010
url: "https://pymunk.org"

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ the Pymunk webpage for some examples.
1818

1919
2007 - 2025, Victor Blomqvist - [email protected], MIT License
2020

21-
This release is based on the latest Pymunk release (7.0.0),
21+
This release is based on the latest Pymunk release (7.0.1),
2222
using Munk2D 2.0 rev 5ef7498946f0e956f294cb3fea283626921e4128.
2323

2424

docs/src/showcase.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ List of papers which has used or mentioned Pymunk:
803803
"Dynamic Robot Path Planning Among Crowds in Emergency Situations."
804804

805805

806-
List last updated 2025-01-26. If something is missing or wrong, please contact
806+
List last updated 2025-06-07. If something is missing or wrong, please contact
807807
me!
808808

809809

pymunk/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
cp = _chipmunk_cffi.lib
3333
ffi = _chipmunk_cffi.ffi
3434

35-
version = "2.0.0"
35+
version = "7.0.1"
3636

3737
chipmunk_version = "%s-%s" % (
3838
ffi.string(cp.cpVersionString).decode("utf-8"),

pymunk/tests/test_space.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,8 @@ def remove3(*_: Any) -> None:
655655
s.on_collision(0, 1, separate=remove3)
656656

657657
for _ in range(10):
658-
s.step(1)
658+
s.step(1)
659+
659660
self.assertEqual(len(s.shapes), 0)
660661

661662
def testRemoveInSeparateWithoutStep(self) -> None:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99

1010
[project]
1111
name = "pymunk"
12-
version = "7.0.0" # remember to change me for new versions!
12+
version = "7.0.1" # remember to change me for new versions!
1313
# Require cffi >1.14.0 since that (and older) has problem with returing structs from functions.
1414
# Require cffi >= 1.17.1 since older cant work with latest setuptools version
1515
dependencies = [

0 commit comments

Comments
 (0)