diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 765902c..6c83d8e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.11 +current_version = 2.0.12 files = setup.py mtpy/__init__.py README.md docs/source/conf.py commit = True tag = True diff --git a/README.md b/README.md index 8de3733..8b4adf2 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![Documentation Status](https://readthedocs.org/projects/mtpy-v2/badge/?version=latest)](https://mtpy-v2.readthedocs.io/en/latest/?badge=latest) [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/MTgeophysics/mtpy-v2/main) -## Version 2.0.11 +## Version 2.0.12 # Description diff --git a/docs/source/conf.py b/docs/source/conf.py index ef71801..8963198 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -67,9 +67,9 @@ # # The short X.Y version. -version = "2.0.11" +version = "2.0.12" # The full version, including alpha/beta/rc tags. -release = "2.0.11" +release = "2.0.12" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/mtpy/__init__.py b/mtpy/__init__.py index b603ca3..06cb9fa 100644 --- a/mtpy/__init__.py +++ b/mtpy/__init__.py @@ -18,7 +18,7 @@ from mtpy.imaging.mtcolors import MT_CMAP_DICT, register_cmaps -__version__ = "2.0.11" +__version__ = "2.0.12" __all__ = ["MT", "MTData", "MTCollection"] # ============================================================================= diff --git a/setup.py b/setup.py index 1fb4129..ac3d8e3 100644 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/MTgeophysics/mtpy-v2", - version="2.0.11", + version="2.0.12", zip_safe=False, package_data={"": []}, )