diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 30b5919a..6a0b66bf 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.0a6.dev +current_version = 2.0.0a6 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(0a)?(?P\d+)(\.(?P[a-z]+))? diff --git a/docs/conf.py b/docs/conf.py index c82c5c6b..9ac7b64a 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ # built documents. # # The short X.Y version. -version = "2.0.0a6.dev" +version = "2.0.0a6" # The full version, including alpha/beta/rc tags. -release = "2.0.0a6.dev" +release = "2.0.0a6" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_ostree/app/__init__.py b/pulp_ostree/app/__init__.py index 667f763f..65df3766 100755 --- a/pulp_ostree/app/__init__.py +++ b/pulp_ostree/app/__init__.py @@ -6,5 +6,5 @@ class PulpOstreePluginAppConfig(PulpPluginAppConfig): name = "pulp_ostree.app" label = "ostree" - version = "2.0.0a6.dev" + version = "2.0.0a6" python_package_name = "pulp-ostree" diff --git a/setup.py b/setup.py index 57b6da4c..3295cd2f 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-ostree", - version="2.0.0a6.dev", + version="2.0.0a6", description="OSTree plugin for the Pulp Project", long_description=long_description, long_description_content_type="text/markdown",