Skip to content

Commit cd76f1f

Browse files
committed
Prep 7.1.0
1 parent 4858660 commit cd76f1f

File tree

3 files changed

+24
-6
lines changed

3 files changed

+24
-6
lines changed

CHANGELOG.rst

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,28 @@
22
Changelog
33
=========
44

5-
Pymunk 7.0.2 (2025-06-28)
5+
Pymunk 7.1.0 (2025-06-29)
66
-------------------------
77

8-
Handler fixes
8+
**Minor fix for wildcard collision handler!**
9+
10+
This is a minor release. It contains a fix for 'wildcard' collision
11+
handlers (`space.on_collision(X, None, ...)`). Now the handler will be
12+
invoked twice if two shapes of the same type collide.
13+
14+
This release also updates cibuildwheel used to build wheels, and as part of
15+
the upgrade Pymunk will no longer publish wheels for 32bit Linux.
16+
17+
Changes:
18+
19+
- Fixed wildcard collision handler to be called twice for collisions between
20+
two shapes of same type.
21+
- Allow get of `DampedSpring.force_func`
22+
- Allow get of `DampedRotarySpring.torque_func`
23+
- Rewrote some properties to use @property. Note that this means type checking
24+
with mypy needs at least mypy 1.16.0.
25+
- Updated to cibuildwheel 3.0 to build Pymunk. This also means Pymunk will not
26+
publish wheels for 32bit Linux anymore.
927

1028

1129
Pymunk 7.0.1 (2025-06-07)
@@ -14,7 +32,7 @@ Pymunk 7.0.1 (2025-06-07)
1432
**Minor fixes and experimental iOS wheel!**
1533

1634
This is a minor patch release, which adds experimental iOS wheels, minor bug
17-
fix and fixes the verison number that was wrong in the previous release.
35+
fix and fixes the version number that was wrong in the previous release.
1836

1937
Changes:
2038

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.2
9-
date-released: 2025-06-28
8+
version: 7.1.0
9+
date-released: 2025-06-29
1010
url: "https://pymunk.org"

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.1" # remember to change me for new versions!
12+
version = "7.1.0" # 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)