Skip to content

Commit c4367dd

Browse files
committed
Bump version to 0.9.12
1 parent 34b7c5b commit c4367dd

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

doc/news.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This describes the latest changes between the PySDL2 releases.
55
0.9.12
66
------
77

8-
Released on XXXX-XX-XX.
8+
Released on 2022-07-18.
99

1010
New Features:
1111

@@ -20,8 +20,6 @@ New Features:
2020
wrappers around the ctypes bindings), and also allows developers to write code
2121
that will not break when other SDL2 modules are eventually migrated to similar
2222
Python-wrapped bindings.
23-
* Added an informative warning for users using pysdl2-dll with PySDL2 on an
24-
Apple Silicon Mac.
2523

2624

2725
Fixed Bugs:

sdl2/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@
4848
_SDL_SetMainReady = _bind("SDL_SetMainReady")
4949
_SDL_SetMainReady()
5050

51-
__version__ = "0.9.11"
52-
version_info = (0, 9, 11)
51+
__version__ = "0.9.12"
52+
version_info = (0, 9, 12)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# from distutils.core import setup
66
from setuptools import setup
77

8-
VERSION = "0.9.11"
8+
VERSION = "0.9.12"
99

1010
if __name__ == "__main__":
1111

0 commit comments

Comments
 (0)