Skip to content

Commit

Permalink
Prep release 6.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
viblo committed Jun 23, 2023
1 parent 67b8895 commit d34961f
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 15 deletions.
21 changes: 15 additions & 6 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,23 @@
Changelog
=========

..
Pymunk 6.5?
Pymunk 6.5.0 (2023-06-23)
-------------------------

**Repeatable pickle/unpickle of simulation!**

When pickling the internal collision state will now be pickled as well,
meaning that the unpickled space will behave as the original even when
collisions where ongoing while pickling. This is useful if you want to
replay a simulation.

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

- Pickle of internal collision state
- Pickle of internal collision state
- Merged the latest upstream Chipmunk version
- Improved type hints
- Improved docs


Pymunk 6.4.0 (2022-11-20)
-------------------------
Expand Down
10 changes: 5 additions & 5 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
cff-version: 1.2.0
message: "If you use this software and want to cite it, please do so as below."
authors:
- family-names: "Blomqvist"
given-names: "Victor"
- family-names: "Blomqvist"
given-names: "Victor"
title: "Pymunk"
abstract: "A easy-to-use pythonic rigid body 2d physics library"
version: 6.4.0
date-released: 2022-11-20
url: "https://pymunk.org"
version: 6.5.0
date-released: 2023-06-20
url: "https://pymunk.org"
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ the Pymunk webpage for some examples.

2007 - 2023, Victor Blomqvist - [email protected], MIT License

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


Installation
Expand Down
2 changes: 1 addition & 1 deletion pymunk/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
cp = _chipmunk_cffi.lib
ffi = _chipmunk_cffi.ffi

version = "6.4.0"
version = "6.5.0"

chipmunk_version = "%s-%s" % (
ffi.string(cp.cpVersionString).decode("utf-8"),
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
url="http://www.pymunk.org",
author="Victor Blomqvist",
author_email="[email protected]",
version="6.4.0", # remember to change me for new versions!
version="6.5.0", # remember to change me for new versions!
description="Pymunk is a easy-to-use pythonic 2d physics library",
long_description=long_description,
packages=["pymunk", "pymunk.tests", "pymunk.examples"],
Expand Down

0 comments on commit d34961f

Please sign in to comment.