From 34ee299e13bc748fd1eef08ad22bc00a0d1fc22a Mon Sep 17 00:00:00 2001 From: Austin Hurst Date: Sat, 3 Sep 2022 13:37:20 -0300 Subject: [PATCH] Release version 0.9.14 --- AUTHORS.txt | 1 + doc/news.rst | 2 ++ sdl2/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/AUTHORS.txt b/AUTHORS.txt index 274931d..d9a5610 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -33,6 +33,7 @@ Thanks to everyone else for their assistance, support, fixes and improvements: * Linus Heckemann * Marcel Rodrigues * Martin Chaperot-Merino +* Matěj Cepl * Max Bareiss * mgorny * Michael McCandless diff --git a/doc/news.rst b/doc/news.rst index 47c60aa..d3b22a3 100644 --- a/doc/news.rst +++ b/doc/news.rst @@ -5,6 +5,8 @@ This describes the latest changes between the PySDL2 releases. 0.9.14 (Unreleased) ------------------- +Released on 2022-09-03. + New Features: * Added a new function :func:`~sdl2.ext.get_displays` and class diff --git a/sdl2/__init__.py b/sdl2/__init__.py index 62a335c..3df0cb5 100644 --- a/sdl2/__init__.py +++ b/sdl2/__init__.py @@ -49,5 +49,5 @@ _SDL_SetMainReady = _bind("SDL_SetMainReady") _SDL_SetMainReady() -__version__ = "0.9.14a1" +__version__ = "0.9.14" version_info = (0, 9, 14) diff --git a/setup.py b/setup.py index a8e5b49..eadb245 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import re from setuptools import setup -VERSION = "0.9.14a1" +VERSION = "0.9.14" if __name__ == "__main__":