Skip to content

Commit 512eede

Browse files
committed
Release version 0.9.13
1 parent 4d85ba3 commit 512eede

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

doc/news.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ Release News
22
============
33
This describes the latest changes between the PySDL2 releases.
44

5-
0.9.13 (Unreleased)
6-
-------------------
5+
0.9.13
6+
------
7+
8+
Released on 2022-07-26.
79

810
New Features:
911

sdl2/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@
4949
_SDL_SetMainReady = _bind("SDL_SetMainReady")
5050
_SDL_SetMainReady()
5151

52-
__version__ = "0.9.12"
53-
version_info = (0, 9, 12)
52+
__version__ = "0.9.13"
53+
version_info = (0, 9, 13)

setup.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,12 @@
22
import os
33
import sys
44
import re
5-
# from distutils.core import setup
65
from setuptools import setup
76

8-
VERSION = "0.9.12"
7+
VERSION = "0.9.13"
98

109
if __name__ == "__main__":
1110

12-
if "--format=msi" in sys.argv or "bdist_msi" in sys.argv:
13-
# hack the version name to a format msi doesn't have trouble with
14-
VERSION = VERSION.replace("-alpha", "a")
15-
VERSION = VERSION.replace("-beta", "b")
16-
VERSION = VERSION.replace("-rc", "r")
17-
1811
fname = os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md")
1912
with open(fname, "r") as readme:
2013
long_desc = readme.read()

0 commit comments

Comments
 (0)