From bef333ed6fb8543317aa3535590201b98fa3e070 Mon Sep 17 00:00:00 2001 From: Chad Estioco Date: Sat, 29 Aug 2020 11:33:59 +0800 Subject: [PATCH] Version bump to 3.0.0-alpha. Changes: The main code is now ported to Python 3. It is sheer awesome coincidence that version 3 of this library is _the_ port to Python 3. --- components/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/__init__.py b/components/__init__.py index ae73b50..72992ce 100644 --- a/components/__init__.py +++ b/components/__init__.py @@ -1,4 +1,4 @@ """ Just my __init__.py to conform to standards. """ -__version__ = "2.0.0-alpha-dev" +__version__ = "3.0.0-alpha" diff --git a/setup.py b/setup.py index 7bf3f8a..e68f9d9 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ def get_font_paths(): setup( name="PyGame Objects", - version="2.0.0-alpha-dev", + version="3.0.0-alpha", author="Chad Estioco", author_email="chadestioco@gmail.com", url="https://github.com/skytreader/PyGame-Objects",