Skip to content

Commit

Permalink
Bump version to 0.9.9
Browse files Browse the repository at this point in the history
  • Loading branch information
a-hurst committed Sep 2, 2021
1 parent 153ce01 commit d178fe2
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Thanks to everyone else for their assistance, support, fixes and improvements:

* Andreas Schiefer
* Bao "Mantle" Rong
* Ben Greiner
* Bil Bas
* Dan McCombs
* David Farler
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
# The short X.Y version.
version = '0.9'
# The full version, including alpha/beta/rc tags.
release = '0.9.8'
release = '0.9.9'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
7 changes: 4 additions & 3 deletions doc/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,17 @@ This describes the latest changes between the PySDL2 releases.
0.9.9
-----

Released on XXXX-XX-XX.
Released on 2021-09-02.

New Features:

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

Fixed bugs:

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


0.9.8
Expand Down
4 changes: 2 additions & 2 deletions sdl2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,5 @@
SDL_WasInit = _bind("SDL_WasInit", [Uint32], Uint32)
SDL_Quit = _bind("SDL_Quit")

__version__ = "0.9.8"
version_info = (0, 9, 8)
__version__ = "0.9.9"
version_info = (0, 9, 9)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# from distutils.core import setup
from setuptools import setup

VERSION = "0.9.8"
VERSION = "0.9.9"

if __name__ == "__main__":

Expand Down

0 comments on commit d178fe2

Please sign in to comment.