diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 460da476..3765caca 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.15 +current_version = 0.1.0 commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index 01521320..1d6d7bd7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,7 +27,7 @@ author = "Quantmetry" # The full version, including alpha/beta/rc tags -version = "0.0.15" +version = "0.1.0" release = version # -- General configuration --------------------------------------------------- diff --git a/qolmat/_version.py b/qolmat/_version.py index 6561790f..3dc1f76b 100644 --- a/qolmat/_version.py +++ b/qolmat/_version.py @@ -1 +1 @@ -__version__ = "0.0.15" +__version__ = "0.1.0" diff --git a/setup.py b/setup.py index 7e52c507..915ff331 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import find_packages, setup DISTNAME = "qolmat" -VERSION = "0.0.15" +VERSION = "0.1.0" DESCRIPTION = "A Python library for optimal data imputation." LONG_DESCRIPTION_CONTENT_TYPE = "text/x-rst" with codecs.open("README.rst", encoding="utf-8-sig") as f: