From: Philippe Proulx Date: Fri, 29 May 2015 00:03:20 +0000 (-0400) Subject: barectf v0.3.0 X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=b17695bdefa4e300fc8d15a3d35dee4e7645913e;p=deliverable%2Fbarectf.git barectf v0.3.0 --- 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',