From 08a26f84d0ed087edffd865ccd13227156af4cb0 Mon Sep 17 00:00:00 2001 From: Austin Hurst Date: Mon, 30 Dec 2024 13:53:44 -0400 Subject: [PATCH] Release 0.9.17 --- doc/news.rst | 6 ++++-- sdl2/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/doc/news.rst b/doc/news.rst index 1b79c65..fd64520 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.17 (Unreleased) -------------------- +0.9.17 +------ + +Released on 2023-12-30. New Features: diff --git a/sdl2/__init__.py b/sdl2/__init__.py index 08ee7ac..739e3e3 100644 --- a/sdl2/__init__.py +++ b/sdl2/__init__.py @@ -49,5 +49,5 @@ _SDL_SetMainReady = _bind("SDL_SetMainReady") _SDL_SetMainReady() -__version__ = "0.9.17a1" +__version__ = "0.9.17" version_info = (0, 9, 17) diff --git a/setup.py b/setup.py index 337a084..04b7ebb 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import re from setuptools import setup -VERSION = "0.9.17a1" +VERSION = "0.9.17" if __name__ == "__main__":