Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 68e90c6

Browse files
committedMay 27, 2025·
Prep 7.0.0
1 parent 6af8524 commit 68e90c6

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed
 

‎CHANGELOG.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
=========
22
Changelog
33
=========
4-
Pymunk 7.0.0 (2025-05-26)
4+
5+
Pymunk 7.0.0 (2025-05-28)
56
-------------------------
67

78
**Many improvements and breaking changes!**

‎CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ authors:
66
title: "Pymunk"
77
abstract: "A easy-to-use pythonic rigid body 2d physics library"
88
version: 7.0.0
9-
date-released: 2025-02-09
9+
date-released: 2025-05-28
1010
url: "https://pymunk.org"

‎README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ the Pymunk webpage for some examples.
1919
2007 - 2025, Victor Blomqvist - vb@viblo.se, MIT License
2020

2121
This release is based on the latest Pymunk release (7.0.0),
22-
using Munk2D 1.0 rev fc7ecea12aad22df30f89f7cfc0b6aa271f864ee.
22+
using Munk2D 2.0 rev 7f091aadb1b9e6c0e0a1705c1ed71c1e375eb64d.
2323

2424

2525
Installation

‎pymunk/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
cp = _chipmunk_cffi.lib
3333
ffi = _chipmunk_cffi.ffi
3434

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

3737
chipmunk_version = "%s-%s" % (
3838
ffi.string(cp.cpVersionString).decode("utf-8"),
39-
"fc7ecea12aad22df30f89f7cfc0b6aa271f864ee",
39+
"7f091aadb1b9e6c0e0a1705c1ed71c1e375eb64d",
4040
)

‎pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[build-system]
22
requires = [
33
"setuptools",
4-
# "setuptools<74; platform_system=='Windows' and implementation_name=='pypy'",
54
"wheel",
65
"cffi >= 1.17.1; platform_system != 'Emscripten'",
76
"cffi > 1.14.0; platform_system == 'Emscripten'",

0 commit comments

Comments
 (0)
Please sign in to comment.