diff --git a/doc/news.rst b/doc/news.rst index d6a8231..648b625 100644 --- a/doc/news.rst +++ b/doc/news.rst @@ -2,8 +2,10 @@ Release News ============ This describes the latest changes between the PySDL2 releases. -0.9.15 (Unreleased) -------------------- +0.9.15 +------ + +Released on 2023-01-08. New Features: diff --git a/sdl2/__init__.py b/sdl2/__init__.py index 770050c..c658382 100644 --- a/sdl2/__init__.py +++ b/sdl2/__init__.py @@ -49,5 +49,5 @@ _SDL_SetMainReady = _bind("SDL_SetMainReady") _SDL_SetMainReady() -__version__ = "0.9.15a1" +__version__ = "0.9.15" version_info = (0, 9, 15) diff --git a/setup.py b/setup.py index e253bf3..830d65a 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import re from setuptools import setup -VERSION = "0.9.15a1" +VERSION = "0.9.15" if __name__ == "__main__": @@ -42,11 +42,11 @@ "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries :: Python Modules",