Skip to content

Commit 40f95bf

Browse files
committed
Prepare release 6.2.1
1 parent 9d1c5c1 commit 40f95bf

File tree

7 files changed

+22
-7
lines changed

7 files changed

+22
-7
lines changed

.github/workflows/wheels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
CIBW_TEST_COMMAND: "python -m pymunk.tests"
2323
CIBW_BUILD_VERBOSITY: 3
2424
- uses: actions/upload-artifact@v2
25-
if: ${{ github.ref == 'refs/heads/arm64' }}
25+
if: ${{ github.ref == 'refs/heads/master' }}
2626
with:
2727
path: ./wheelhouse/*.whl
2828
retention-days: 7

CHANGELOG.rst

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

5+
Pymunk 6.2.1 (2021-10-31)
6+
-------------------------
7+
8+
**Build wheel for CPython 3.10!**
9+
10+
This is a minor update with changes to the build pipe to build wheels for more
11+
cases, notably the recently released CPython 3.10.
12+
13+
Changes:
14+
15+
- Use pyproject.toml
16+
- Require CFFI 1.15 to make sure wheels are build ok on Apple ARM64/M1.
17+
- Doc improvements
18+
- Build wheels for more targets
19+
520
Pymunk 6.2.0 (2021-08-25)
621
-------------------------
722

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 - 2021, Victor Blomqvist - [email protected], MIT License
2020

21-
This release is based on the latest Pymunk release (6.2.0),
21+
This release is based on the latest Pymunk release (6.2.1),
2222
using Chipmunk 7 rev 0593976ef47fcb3957166bd342f6b2bafe4d0e44 .
2323

2424

docs/src/showcase.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ List of papers which has used or mentioned Pymunk:
465465
"Dynamic Robot Path Planning Among Crowds in Emergency Situations."
466466

467467

468-
List last updated 2021-06-22. If something is missing or wrong, please contact
468+
List last updated 2021-10-31. If something is missing or wrong, please contact
469469
me!
470470

471471
.. (list made using "Chicago" style citation)
@@ -481,7 +481,7 @@ version number if included.):
481481
482482
@misc{pymunk,
483483
author = {Victor Blomqvist},
484-
title = {Pymunk: A easy-to-use pythonic rigid body 2d physics library (version 6.2.0)},
484+
title = {Pymunk: A easy-to-use pythonic rigid body 2d physics library (version 6.2.1)},
485485
year = {2007},
486486
url = {https://www.pymunk.org},
487487
}

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.2.0"
35+
version = "6.2.1"
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="[email protected]",
24-
version="6.2.0", # remember to change me for new versions!
24+
version="6.2.1", # 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"],

tools/create_release_win.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def main():
1010
Remember (before running this script!):
1111
- change version number in README.rst, setup.py, showcase.rst and __init__.py
1212
- test in at least CPython 3.x and Pypy3
13-
- validate test results of Travis and Appveyor
13+
- validate test results of Github Actions
1414
- write changelog entry and put in changelog.rst
1515
- make sure all images are optimized (for example with tinypng.com)
1616
- generate docs before running sdist

0 commit comments

Comments
 (0)