From fa90bb194f88431c837cc334ea5e5cbd4c89c515 Mon Sep 17 00:00:00 2001 From: devinacker Date: Fri, 6 Oct 2017 03:01:25 -0400 Subject: [PATCH] update version info (and tweak setup.py a bit to get around me screwing up the PyPI upload) --- omg/__init__.py | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/omg/__init__.py b/omg/__init__.py index 287a27d..6271fcb 100644 --- a/omg/__init__.py +++ b/omg/__init__.py @@ -24,8 +24,8 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. """ -__version__ = '0.2' -__author__ = 'Fredrik Johansson' +__version__ = '0.3.0' +__author__ = 'Devin Acker, Fredrik Johansson' from omg.wadio import * from omg.wad import * diff --git a/setup.py b/setup.py index 478ed1c..57fd459 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name = 'omgifol', - version = '0.3', + version = '0.3.0', description = 'A Python library for manipulation of Doom WAD files', url = 'https://github.com/devinacker/omgifol', author = 'Devin Acker, Fredrik Johansson',