Skip to content

Commit

Permalink
Release version 0.9.13
Browse files Browse the repository at this point in the history
  • Loading branch information
a-hurst committed Jul 26, 2022
1 parent 4d85ba3 commit 512eede
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 12 deletions.
6 changes: 4 additions & 2 deletions doc/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ Release News
============
This describes the latest changes between the PySDL2 releases.

0.9.13 (Unreleased)
-------------------
0.9.13
------

Released on 2022-07-26.

New Features:

Expand Down
4 changes: 2 additions & 2 deletions sdl2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@
_SDL_SetMainReady = _bind("SDL_SetMainReady")
_SDL_SetMainReady()

__version__ = "0.9.12"
version_info = (0, 9, 12)
__version__ = "0.9.13"
version_info = (0, 9, 13)
9 changes: 1 addition & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,12 @@
import os
import sys
import re
# from distutils.core import setup
from setuptools import setup

VERSION = "0.9.12"
VERSION = "0.9.13"

if __name__ == "__main__":

if "--format=msi" in sys.argv or "bdist_msi" in sys.argv:
# hack the version name to a format msi doesn't have trouble with
VERSION = VERSION.replace("-alpha", "a")
VERSION = VERSION.replace("-beta", "b")
VERSION = VERSION.replace("-rc", "r")

fname = os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md")
with open(fname, "r") as readme:
long_desc = readme.read()
Expand Down

0 comments on commit 512eede

Please sign in to comment.