Skip to content

Commit d34961f

Browse files
committed
Prep release 6.5.0
1 parent 67b8895 commit d34961f

File tree

5 files changed

+24
-15
lines changed

5 files changed

+24
-15
lines changed

CHANGELOG.rst

+15-6
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,23 @@
22
Changelog
33
=========
44

5-
..
6-
Pymunk 6.5?
5+
Pymunk 6.5.0 (2023-06-23)
6+
-------------------------
7+
8+
**Repeatable pickle/unpickle of simulation!**
9+
10+
When pickling the internal collision state will now be pickled as well,
11+
meaning that the unpickled space will behave as the original even when
12+
collisions where ongoing while pickling. This is useful if you want to
13+
replay a simulation.
714

8-
When pickling the internal collision state will now be pickled as well,
9-
meaning that the unpickled space will behave as the original even when
10-
collisions where ongoing while pickling.
15+
Changes:
1116

12-
- Pickle of internal collision state
17+
- Pickle of internal collision state
18+
- Merged the latest upstream Chipmunk version
19+
- Improved type hints
20+
- Improved docs
21+
1322

1423
Pymunk 6.4.0 (2022-11-20)
1524
-------------------------

CITATION.cff

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
cff-version: 1.2.0
22
message: "If you use this software and want to cite it, please do so as below."
33
authors:
4-
- family-names: "Blomqvist"
5-
given-names: "Victor"
4+
- family-names: "Blomqvist"
5+
given-names: "Victor"
66
title: "Pymunk"
77
abstract: "A easy-to-use pythonic rigid body 2d physics library"
8-
version: 6.4.0
9-
date-released: 2022-11-20
10-
url: "https://pymunk.org"
8+
version: 6.5.0
9+
date-released: 2023-06-20
10+
url: "https://pymunk.org"

README.rst

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

1919
2007 - 2023, Victor Blomqvist - vb@viblo.se, MIT License
2020

21-
This release is based on the latest Pymunk release (6.4.0),
22-
using Chipmunk 7 rev 5dd7d774053145fa37f352d7a07d2f75a9bd8039 .
21+
This release is based on the latest Pymunk release (6.5.0),
22+
using Chipmunk 7 rev 5dd7d774053145fa37f352d7a07d2f75a9bd8039.
2323

2424

2525
Installation

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.4.0"
35+
version = "6.5.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
@@ -21,7 +21,7 @@
2121
url="http://www.pymunk.org",
2222
author="Victor Blomqvist",
2323
author_email="vb@viblo.se",
24-
version="6.4.0", # remember to change me for new versions!
24+
version="6.5.0", # remember to change me for new versions!
2525
description="Pymunk is a easy-to-use pythonic 2d physics library",
2626
long_description=long_description,
2727
packages=["pymunk", "pymunk.tests", "pymunk.examples"],

0 commit comments

Comments
 (0)