From 44dcd7e1a1355fa0c95fe53db1345e36d56d89ae Mon Sep 17 00:00:00 2001 From: Dustin Long Date: Sat, 11 May 2019 15:40:09 -0400 Subject: [PATCH] Bump to version 1.5 --- makechr/makechr.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/makechr/makechr.py b/makechr/makechr.py index 7dca393..a09a565 100644 --- a/makechr/makechr.py +++ b/makechr/makechr.py @@ -8,7 +8,7 @@ import sys -__version__ = '1.4' +__version__ = '1.5' def allow_overflow_build(text): diff --git a/setup.py b/setup.py index 83d95fb..fe11a29 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ long_description = """Makechr is a tool for generating NES graphics from pixel art images. It creates the NES graphical components as separate files, letting you easily include these are binaries into homebrew ROMs. There are many options for handling different types of input images, check the README for more information.""" -__version__ = '1.4' +__version__ = '1.5' if sys.argv[1] == 'py2exe': @@ -30,7 +30,7 @@ 'icon_resources': [(1, 'makechr/res/windows.ico')], 'dest_base': 'makechr', 'description': 'Makechr tool for generating NES graphics', - 'copyright': 'Copyright (C) 2017 Dustin Long', + 'copyright': 'Copyright (C) 2019 Dustin Long', }], packages=['makechr'], zipfile=None,