diff --git a/doc/news.rst b/doc/news.rst index d3b22a3..1f9791b 100644 --- a/doc/news.rst +++ b/doc/news.rst @@ -2,9 +2,13 @@ Release News ============ This describes the latest changes between the PySDL2 releases. -0.9.14 (Unreleased) +0.9.15 (Unreleased) ------------------- + +0.9.14 +------ + Released on 2022-09-03. New Features: diff --git a/sdl2/__init__.py b/sdl2/__init__.py index 3df0cb5..770050c 100644 --- a/sdl2/__init__.py +++ b/sdl2/__init__.py @@ -49,5 +49,5 @@ _SDL_SetMainReady = _bind("SDL_SetMainReady") _SDL_SetMainReady() -__version__ = "0.9.14" -version_info = (0, 9, 14) +__version__ = "0.9.15a1" +version_info = (0, 9, 15) diff --git a/setup.py b/setup.py index eadb245..e253bf3 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import re from setuptools import setup -VERSION = "0.9.14" +VERSION = "0.9.15a1" if __name__ == "__main__":