From e5e6954cad83a03cfd463541121cd3ec56f368b2 Mon Sep 17 00:00:00 2001 From: Austin Hurst Date: Wed, 28 Jun 2023 11:28:02 -0300 Subject: [PATCH] Release 0.9.16 --- doc/news.rst | 6 ++++-- sdl2/__init__.py | 4 ++-- setup.py | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/doc/news.rst b/doc/news.rst index 03f11bd..c11c1e9 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.16 (Unreleased) -------------------- +0.9.16 +------ + +Released on 2023-06-28. New Features: diff --git a/sdl2/__init__.py b/sdl2/__init__.py index 003bb49..f2ae650 100644 --- a/sdl2/__init__.py +++ b/sdl2/__init__.py @@ -49,5 +49,5 @@ _SDL_SetMainReady = _bind("SDL_SetMainReady") _SDL_SetMainReady() -__version__ = "0.9.16a1" -version_info = (0, 9, 15) +__version__ = "0.9.16" +version_info = (0, 9, 16) diff --git a/setup.py b/setup.py index 35b4ca7..dbaacbd 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import re from setuptools import setup -VERSION = "0.9.16a1" +VERSION = "0.9.16" if __name__ == "__main__":