diff --git a/setup.cfg b/setup.cfg index 5d624204..5765b15f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.3.0 +current_version = 1.3.1 commit = True tag = True diff --git a/setup.py b/setup.py index 2f41e55e..9b457877 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='Splipy', - version='1.3.0', + version='1.3.1', description='Spline modelling library for Python', long_description_content_type='text/markdown', long_description=long_description, diff --git a/splipy/__init__.py b/splipy/__init__.py index 88beb281..19979253 100644 --- a/splipy/__init__.py +++ b/splipy/__init__.py @@ -8,7 +8,7 @@ from splipy.SplineModel import SplineModel from splipy.TrimmedSurface import TrimmedSurface -__version__ = '1.3.0' +__version__ = '1.3.1' __all__ = ['BSplineBasis', 'SplineObject', 'Curve',