diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 254978cca..624c7c02d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.17.2.dev +current_version = 0.17.2 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 f26c8af06..9cc8aca1b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,9 +30,9 @@ author = 'Pulp Ansible Team' # The short X.Y version -version = "0.17.2.dev" +version = "0.17.2" # The full version, including alpha/beta/rc tags -release = "0.17.2.dev" +release = "0.17.2" # -- General configuration --------------------------------------------------- diff --git a/pulp_ansible/app/__init__.py b/pulp_ansible/app/__init__.py index 213178aaa..36579af9a 100644 --- a/pulp_ansible/app/__init__.py +++ b/pulp_ansible/app/__init__.py @@ -8,5 +8,5 @@ class PulpAnsiblePluginAppConfig(PulpPluginAppConfig): name = "pulp_ansible.app" label = "ansible" - version = "0.17.2.dev" + version = "0.17.2" python_package_name = "pulp-ansible" diff --git a/setup.py b/setup.py index 8140a2169..89955255b 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-ansible", - version="0.17.2.dev", + version="0.17.2", description="Pulp plugin to manage Ansible content, e.g. roles", long_description=long_description, license="GPLv2+",