Skip to content

Commit ffdf84c

Browse files
committed
Prep 6.8.0
1 parent 57ae417 commit ffdf84c

File tree

5 files changed

+27
-9
lines changed

5 files changed

+27
-9
lines changed

CHANGELOG.rst

+22-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,28 @@
22
Changelog
33
=========
44

5-
..
6-
Fix for 2 static bodies that are changed to dynamic and are attached to constraints
7-
Updated the fork of Chipmunk2D used by Pymunk, fixing a number of issues, including maxForce on Spring constaints.
8-
Added callback functions for DampedSpring and DampedRotarySpring to allow customized force/torque calculations.
5+
Pymunk 6.8.0 (2024-05-10)
6+
-------------------------
7+
8+
**Spring improvements**
9+
10+
This release makes the max force property on the two spring constraints work
11+
as expected (previosuly it did not have any effect). It is also possible to
12+
fully override the force/torque calculation of the springs with new callback.
13+
Appart from this a collection of fixes in the underlying Chipmunk2D library
14+
has been added. Finally its now possible to create static bodies with
15+
constraints between them, and then change the bodies to dynamic to "start"
16+
simulation of them.
17+
18+
Changes:
19+
20+
- Fix for 2 static bodies that are changed to dynamic and are attached to
21+
constraints
22+
- Updated the fork of Chipmunk2D used by Pymunk, fixing a number of issues,
23+
including maxForce on Spring constaints.
24+
- Added callback functions for DampedSpring and DampedRotarySpring to allow
25+
customized force/torque calculations.
26+
927

1028
Pymunk 6.7.0 (2024-05-01)
1129
-------------------------

CITATION.cff

+2-2
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: 6.7.0
9-
date-released: 2024-05-01
8+
version: 6.8.0
9+
date-released: 2024-05-10
1010
url: "https://pymunk.org"

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ the Pymunk webpage for some examples.
1818

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

21-
This release is based on the latest Pymunk release (6.7.0),
21+
This release is based on the latest Pymunk release (6.8.0),
2222
using Chipmunk2D 7 rev 7a29dcfa49931f26632f3019582f289ba811a2b9.
2323

2424

pymunk/_version.py

+1-1
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 = "6.7.0"
35+
version = "6.8.0"
3636

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

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
url="http://www.pymunk.org",
3030
author="Victor Blomqvist",
3131
author_email="[email protected]",
32-
version="6.7.0", # remember to change me for new versions!
32+
version="6.8.0", # remember to change me for new versions!
3333
description="Pymunk is a easy-to-use pythonic 2D physics library",
3434
long_description=long_description,
3535
packages=packages,

0 commit comments

Comments
 (0)