Skip to content

Commit 2147579

Browse files
committed
Start prep pymunk 6.7
1 parent ef33aa6 commit 2147579

11 files changed

+12
-12
lines changed

CITATION.cff

+1-1
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.6.0
8+
version: 6.7.0
99
date-released: 2023-11-02
1010
url: "https://pymunk.org"

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Pymunk has been used with success in many projects, big and small. For example:
1616
papers and even in a self-driving car simulation! See the Showcases section on
1717
the Pymunk webpage for some examples.
1818

19-
2007 - 2023, Victor Blomqvist - [email protected], MIT License
19+
2007 - 2024, Victor Blomqvist - [email protected], MIT License
2020

21-
This release is based on the latest Pymunk release (6.6.0),
21+
This release is based on the latest Pymunk release (6.7.0),
2222
using Chipmunk 7 rev 2e8d4104b7e2380d1a73f5363a931b3eb3de8d07.
2323

2424

pymunk/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ----------------------------------------------------------------------------
22
# pymunk
3-
# Copyright (c) 2007-2023 Victor Blomqvist
3+
# Copyright (c) 2007-2024 Victor Blomqvist
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

pymunk/_pyglet15_util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ----------------------------------------------------------------------------
22
# pymunk
3-
# Copyright (c) 2007-2023 Victor Blomqvist
3+
# Copyright (c) 2007-2024 Victor Blomqvist
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

pymunk/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ----------------------------------------------------------------------------
22
# pymunk
3-
# Copyright (c) 2007-2023 Victor Blomqvist
3+
# Copyright (c) 2007-2024 Victor Blomqvist
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

pymunk/constraints.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ----------------------------------------------------------------------------
22
# pymunk
3-
# Copyright (c) 2007-2023 Victor Blomqvist
3+
# Copyright (c) 2007-2024 Victor Blomqvist
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

pymunk/pygame_util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ----------------------------------------------------------------------------
22
# pymunk
3-
# Copyright (c) 2007-2023 Victor Blomqvist
3+
# Copyright (c) 2007-2024 Victor Blomqvist
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

pymunk/pyglet_util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ----------------------------------------------------------------------------
22
# pymunk
3-
# Copyright (c) 2007-2023 Victor Blomqvist
3+
# Copyright (c) 2007-2024 Victor Blomqvist
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

pymunk/util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ----------------------------------------------------------------------------
22
# pymunk
3-
# Copyright (c) 2007-2023 Victor Blomqvist
3+
# Copyright (c) 2007-2024 Victor Blomqvist
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

pymunk/vec2d.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ----------------------------------------------------------------------------
22
# pymunk
3-
# Copyright (c) 2007-2023 Victor Blomqvist
3+
# Copyright (c) 2007-2024 Victor Blomqvist
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

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.6.0", # remember to change me for new versions!
32+
version="6.7.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)