diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7e77f4741..009b416c7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.20.4 +current_version = 2.20.5.dev commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/docs/conf.py b/docs/conf.py index 641d147dc..ae51861f8 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ # built documents. # # The short X.Y version. -version = "2.20.4" +version = "2.20.5.dev" # The full version, including alpha/beta/rc tags. -release = "2.20.4" +release = "2.20.5.dev" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_container/app/__init__.py b/pulp_container/app/__init__.py index 4d63ed632..bbebf4180 100644 --- a/pulp_container/app/__init__.py +++ b/pulp_container/app/__init__.py @@ -6,7 +6,7 @@ class PulpContainerPluginAppConfig(PulpPluginAppConfig): name = "pulp_container.app" label = "container" - version = "2.20.4" + version = "2.20.5.dev" python_package_name = "pulp-container" def ready(self): diff --git a/setup.py b/setup.py index 0a9d7e318..67f036311 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-container", - version="2.20.4", + version="2.20.5.dev", description="Container plugin for the Pulp Project", long_description=long_description, license="GPLv2+",