Skip to content

Commit

Permalink
Bump version: 0.1.3 → 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fwkoch committed Jul 18, 2017
1 parent 4d0b121 commit 29e05f7
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -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

2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -133,7 +133,7 @@

# The name for this set of Sphinx documents.
# "<project> v<release> 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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setup(
name='vectormath',
version='0.1.3',
version='0.1.4',
packages=find_packages(),
install_requires=[
'numpy>=1.7',
Expand Down
2 changes: 1 addition & 1 deletion vectormath/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit 29e05f7

Please sign in to comment.