diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 192d6cd6..7fa4b7c6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.13.1.dev +current_version = 1.13.1 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 cfdaa742..586f1713 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -56,9 +56,9 @@ # built documents. # # The short X.Y version. -version = "1.13.1.dev" +version = "1.13.1" # The full version, including alpha/beta/rc tags. -release = "1.13.1.dev" +release = "1.13.1" # 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 fd783394..50d1b0c8 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.13.1.dev" + version = "1.13.1" python_package_name = "pulp-file" domain_compatible = True diff --git a/setup.py b/setup.py index 24b071be..fc30652f 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-file", - version="1.13.1.dev", + version="1.13.1", description="File plugin for the Pulp Project", long_description=long_description, license="GPLv2+",