From e3dac64861b782787a5c2b1239b694d01479cace Mon Sep 17 00:00:00 2001 From: Austin Hurst Date: Tue, 11 Jan 2022 17:43:56 -0500 Subject: [PATCH] Bump version to 0.9.10 --- doc/news.rst | 2 +- sdl2/__init__.py | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/news.rst b/doc/news.rst index 433c2937..b077df04 100644 --- a/doc/news.rst +++ b/doc/news.rst @@ -5,7 +5,7 @@ This describes the latest changes between the PySDL2 releases. 0.9.10 ------ -Released on XXXX-XX-XX. +Released on 2022-01-11. New Features: diff --git a/sdl2/__init__.py b/sdl2/__init__.py index 6b366c4d..d54794db 100644 --- a/sdl2/__init__.py +++ b/sdl2/__init__.py @@ -70,5 +70,5 @@ SDL_WasInit = _bind("SDL_WasInit", [Uint32], Uint32) SDL_Quit = _bind("SDL_Quit") -__version__ = "0.9.9" -version_info = (0, 9, 9) +__version__ = "0.9.10" +version_info = (0, 9, 10) diff --git a/setup.py b/setup.py index 3c8ae27d..0e3d6ef9 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ # from distutils.core import setup from setuptools import setup -VERSION = "0.9.9" +VERSION = "0.9.10" if __name__ == "__main__":