Skip to content

Commit

Permalink
Bump version: 0.0.3 → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fwkoch committed Oct 31, 2016
1 parent bd3f4fe commit 56a2bd9
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.0.3
current_version = 0.1.0
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 @@ -115,4 +115,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.0.3
Current version: v0.1.0
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.0.3'
version = u'0.1.0'
# The full version, including alpha/beta/rc tags.
release = u'0.0.3'
release = u'0.1.0'

# 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.0.3'
#html_title = u'vectormath v0.1.0'

# 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.0.3',
version='0.1.0',
packages=find_packages(),
install_requires=[
'future',
Expand Down
2 changes: 1 addition & 1 deletion vectormath/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from .plane import Plane
from .vector import Vector3, Vector2, Vector3Array, Vector2Array

__version__ = '0.0.3'
__version__ = '0.1.0'
__author__ = '3point Science'
__license__ = 'MIT'
__copyright__ = 'Copyright 2016 3point Science'

0 comments on commit 56a2bd9

Please sign in to comment.