diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 213d02eed..9223e0985 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.14.4.dev +current_version = 2.14.4 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 5ff01f1f4..6eecc6626 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,9 +57,9 @@ # built documents. # # The short X.Y version. -version = "2.14.4.dev" +version = "2.14.4" # The full version, including alpha/beta/rc tags. -release = "2.14.4.dev" +release = "2.14.4" # 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 7b1c8bb45..4c876a56e 100644 --- a/pulp_container/app/__init__.py +++ b/pulp_container/app/__init__.py @@ -6,5 +6,5 @@ class PulpContainerPluginAppConfig(PulpPluginAppConfig): name = "pulp_container.app" label = "container" - version = "2.14.4.dev" + version = "2.14.4" python_package_name = "pulp-container" diff --git a/setup.py b/setup.py index 6b95a936e..f6aa7e2ed 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-container", - version="2.14.4.dev", + version="2.14.4", description="Container plugin for the Pulp Project", long_description=long_description, license="GPLv2+",