Skip to content

Commit d178fe2

Browse files
committed
Bump version to 0.9.9
1 parent 153ce01 commit d178fe2

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

AUTHORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Thanks to everyone else for their assistance, support, fixes and improvements:
1313

1414
* Andreas Schiefer
1515
* Bao "Mantle" Rong
16+
* Ben Greiner
1617
* Bil Bas
1718
* Dan McCombs
1819
* David Farler

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
# The short X.Y version.
5858
version = '0.9'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '0.9.8'
60+
release = '0.9.9'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

doc/news.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,17 @@ This describes the latest changes between the PySDL2 releases.
55
0.9.9
66
-----
77

8-
Released on XXXX-XX-XX.
8+
Released on 2021-09-02.
99

1010
New Features:
1111

1212
* Updated to wrap new functions and constants in in SDL2 2.0.16 (PR #190)
1313

1414
Fixed bugs:
1515

16-
* Reverted the fix for (issue #139), which inadvertantly broke creating
17-
:obj:~sdl2.ext.Renderer` objects from :obj:`~sdl2.ext.Window` objects.
16+
* Reverted the fix for (issue #139), which inadvertantly caused a serious bug
17+
that prevented usage of any non-software renderer with windows created using
18+
:obj:`~sdl2.ext.Window` objects.
1819

1920

2021
0.9.8

sdl2/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,5 @@
6868
SDL_WasInit = _bind("SDL_WasInit", [Uint32], Uint32)
6969
SDL_Quit = _bind("SDL_Quit")
7070

71-
__version__ = "0.9.8"
72-
version_info = (0, 9, 8)
71+
__version__ = "0.9.9"
72+
version_info = (0, 9, 9)

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.8"
8+
VERSION = "0.9.9"
99

1010
if __name__ == "__main__":
1111

0 commit comments

Comments
 (0)