diff --git a/docs/source/conf.py b/docs/source/conf.py index 1d42afa..26eaf27 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,7 +26,7 @@ author = "Charles Tapley Hoyt" # The full version, including alpha/beta/rc tags. -release = "0.6.0" +release = "0.6.1-dev" # The short X.Y version. parsed_version = re.match( diff --git a/pyproject.toml b/pyproject.toml index 6526510..c9953a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "pystow" -version = "0.6.0" +version = "0.6.1-dev" description = "Easily pick a place to store data for your Python code" readme = "README.md" authors = [ @@ -209,7 +209,7 @@ known-first-party = [ docstring-code-format = true [tool.bumpversion] -current_version = "0.6.0" +current_version = "0.6.1-dev" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)(?:-(?P[0-9A-Za-z-]+(?:\\.[0-9A-Za-z-]+)*))?(?:\\+(?P[0-9A-Za-z-]+(?:\\.[0-9A-Za-z-]+)*))?" serialize = [ "{major}.{minor}.{patch}-{release}+{build}", diff --git a/src/pystow/version.py b/src/pystow/version.py index 6b7cead..55c231a 100644 --- a/src/pystow/version.py +++ b/src/pystow/version.py @@ -4,4 +4,4 @@ "VERSION", ] -VERSION = "0.6.0" +VERSION = "0.6.1-dev"