diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d550eb4c5..e8273d314 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.19.2 +current_version = 2.19.3.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 44c6befa0..307afc292 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "2.19.2" +version = "2.19.3.dev" # The full version, including alpha/beta/rc tags. -release = "2.19.2" +release = "2.19.3.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 ba0cfa062..01af7f3df 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.19.2" + version = "2.19.3.dev" python_package_name = "pulp-container" def ready(self): diff --git a/setup.py b/setup.py index 429d133c8..7a5471fba 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-container", - version="2.19.2", + version="2.19.3.dev", description="Container plugin for the Pulp Project", long_description=long_description, license="GPLv2+",