diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 81ee02c4..f5d163f9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.15.0.dev +current_version = 1.15.0 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 fcb85f04..c7c7fac1 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "1.15.0.dev" +version = "1.15.0" # The full version, including alpha/beta/rc tags. -release = "1.15.0.dev" +release = "1.15.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_file/app/__init__.py b/pulp_file/app/__init__.py index af695c1c..0439b614 100644 --- a/pulp_file/app/__init__.py +++ b/pulp_file/app/__init__.py @@ -8,6 +8,6 @@ class PulpFilePluginAppConfig(PulpPluginAppConfig): name = "pulp_file.app" label = "file" - version = "1.15.0.dev" + version = "1.15.0" python_package_name = "pulp-file" domain_compatible = True diff --git a/setup.py b/setup.py index 1267a26e..753b9220 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-file", - version="1.15.0.dev", + version="1.15.0", description="File plugin for the Pulp Project", long_description=long_description, license="GPLv2+",