diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2059475a58..1b9d315308 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.22.19 +current_version = 3.22.20.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 143ec7c6ef..f566f39d15 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -62,9 +62,9 @@ # built documents. # # The short X.Y version. -version = "3.22.19" +version = "3.22.20.dev" # The full version, including alpha/beta/rc tags. -release = "3.22.19" +release = "3.22.20.dev" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index b8820b1480..2101d578fb 100644 --- a/pulpcore/app/apps.py +++ b/pulpcore/app/apps.py @@ -207,7 +207,7 @@ class PulpAppConfig(PulpPluginAppConfig): label = "core" # The version of this app - version = "3.22.19" + version = "3.22.20.dev" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index 980b854e09..86185437b0 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.22.19", + version="3.22.20.dev", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",