From 932d030d6fa022a4ad8ddae1e1e6bfff9f6af063 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Tue, 31 Oct 2017 19:57:00 +0000 Subject: [PATCH] Release 1.3.0 --- Lib/cu2qu/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/cu2qu/__init__.py b/Lib/cu2qu/__init__.py index efcf606e3..b9b6ef379 100644 --- a/Lib/cu2qu/__init__.py +++ b/Lib/cu2qu/__init__.py @@ -15,7 +15,7 @@ from __future__ import print_function, division, absolute_import -__version__ = "1.3.0.dev0" +__version__ = "1.3.0" __all__ = ['curve_to_quadratic', 'curves_to_quadratic'] diff --git a/setup.cfg b/setup.cfg index 50fc0bf3f..213da6c8a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.3.0.dev0 +current_version = 1.3.0 commit = True tag = False tag_name = v{new_version} diff --git a/setup.py b/setup.py index c1733f855..cc81d021a 100644 --- a/setup.py +++ b/setup.py @@ -157,7 +157,7 @@ with open('README.rst', 'r') as f: setup( name='cu2qu', - version="1.3.0.dev0", + version="1.3.0", description='Cubic-to-quadratic bezier curve conversion', author="James Godfrey-Kittle, Behdad Esfahbod", author_email="jamesgk@google.com",