From 29e05f761461e0878b502a2b3c8a89375a6a02a1 Mon Sep 17 00:00:00 2001 From: fwkoch Date: Tue, 18 Jul 2017 12:42:44 -0600 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.3=20=E2=86=92=200.1.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.rst | 2 +- docs/conf.py | 6 +++--- setup.py | 2 +- vectormath/__init__.py | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2a52290..55c2760 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,4 +1,4 @@ [bumpversion] -current_version = 0.1.3 +current_version = 0.1.4 files = setup.py vectormath/__init__.py docs/conf.py README.rst diff --git a/README.rst b/README.rst index fe5b808..d89a392 100644 --- a/README.rst +++ b/README.rst @@ -113,4 +113,4 @@ This example gives a brief demonstration of some of the notable features of print(type(v_array[1:, 1:])) # >> numpy.ndarray -Current version: v0.1.3 +Current version: v0.1.4 diff --git a/docs/conf.py b/docs/conf.py index 019d8dc..1b944f6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,9 +61,9 @@ # built documents. # # The short X.Y version. -version = u'0.1.3' +version = u'0.1.4' # The full version, including alpha/beta/rc tags. -release = u'0.1.3' +release = u'0.1.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -133,7 +133,7 @@ # The name for this set of Sphinx documents. # " v documentation" by default. -#html_title = u'vectormath v0.1.3' +#html_title = u'vectormath v0.1.4' # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None diff --git a/setup.py b/setup.py index 936dbae..72b2e6f 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name='vectormath', - version='0.1.3', + version='0.1.4', packages=find_packages(), install_requires=[ 'numpy>=1.7', diff --git a/vectormath/__init__.py b/vectormath/__init__.py index 82ed89b..36014b5 100644 --- a/vectormath/__init__.py +++ b/vectormath/__init__.py @@ -6,7 +6,7 @@ from .vector import Vector3, Vector2, Vector3Array, Vector2Array -__version__ = '0.1.3' +__version__ = '0.1.4' __author__ = 'ARANZ Geo Limited' __license__ = 'MIT' __copyright__ = 'Copyright 2017 ARANZ Geo Limited'