diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a6406df..183f7f3 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,4 +1,4 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 files = omf/__init__.py setup.py README.rst docs/conf.py diff --git a/README.rst b/README.rst index 850f6a7..5937304 100644 --- a/README.rst +++ b/README.rst @@ -22,7 +22,7 @@ omf :alt: Code coverage -Version: 1.0.0 +Version: 1.0.1 API library for Open Mining Format, a new standard for mining data backed by the `Global Mining Guidelines Group `_. diff --git a/docs/conf.py b/docs/conf.py index 7b9e20b..eba3c2f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -62,9 +62,9 @@ # built documents. # # The short X.Y version. -version = u'1.0.0' +version = u'1.0.1' # The full version, including alpha/beta/rc tags. -release = u'1.0.0' +release = u'1.0.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/omf/__init__.py b/omf/__init__.py index 8c162b0..ffd32a6 100644 --- a/omf/__init__.py +++ b/omf/__init__.py @@ -21,7 +21,7 @@ from .fileio import OMFReader, OMFWriter -__version__ = '1.0.0' +__version__ = '1.0.1' __author__ = 'Global Mining Guidelines Group' __license__ = 'MIT License' __copyright__ = 'Copyright 2019 Global Mining Guidelines Group' diff --git a/setup.py b/setup.py index 9c695cf..e39c8ac 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( name='omf', - version='1.0.0', + version='1.0.1', packages=find_packages(exclude=('tests',)), install_requires=[ 'numpy>=1.7',