Skip to content

Commit

Permalink
Merge pull request #120 from xylar/update_to_v0.1.4
Browse files Browse the repository at this point in the history
Update to v0.1.4
  • Loading branch information
xylar authored Oct 28, 2019
2 parents 39f8990 + 415af4e commit 7e98575
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "geometric_features" %}
{% set version = "0.1.3" %}
{% set version = "0.1.4" %}

package:
name: {{ name|lower }}
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,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
2 changes: 1 addition & 1 deletion geometric_features/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
from geometric_features.feature_collection import FeatureCollection, \
read_feature_collection

__version_info__ = (0, 1, 3)
__version_info__ = (0, 1, 4)
__version__ = '.'.join(str(vi) for vi in __version_info__)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup, find_packages

version = '0.1.3'
version = '0.1.4'

setup(name='geometric_features',
version=version,
Expand Down

0 comments on commit 7e98575

Please sign in to comment.