From b17695bdefa4e300fc8d15a3d35dee4e7645913e Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Thu, 28 May 2015 20:03:20 -0400 Subject: [PATCH] barectf v0.3.0 --- barectf/__init__.py | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/barectf/__init__.py b/barectf/__init__.py index c0fb68e..afe09dd 100644 --- a/barectf/__init__.py +++ b/barectf/__init__.py @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -__version__ = '0.2.0' +__version__ = '0.3.0' diff --git a/setup.py b/setup.py index cb09fa5..c2f3b3a 100755 --- a/setup.py +++ b/setup.py @@ -29,6 +29,7 @@ from setuptools import setup # make sure we run Python 3+ here v = sys.version_info + if v.major < 3: sys.stderr.write('Sorry, barectf needs Python 3\n') sys.exit(1) @@ -53,7 +54,7 @@ entry_points = { setup(name='barectf', - version='0.2.0', + version='0.3.0', description='Generator of C99 code that can write native CTF', author='Philippe Proulx', author_email='eeppeliteloop@gmail.com', -- 2.34.1