diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3b8b7627..33a850d2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.0.dev +current_version = 2.1.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 11d75bfb..e0202f77 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ # built documents. # # The short X.Y version. -version = "2.1.0.dev" +version = "2.1.0" # The full version, including alpha/beta/rc tags. -release = "2.1.0.dev" +release = "2.1.0" # 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 54543241..542d2489 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.1.0.dev" + version = "2.1.0" python_package_name = "pulp-ostree" diff --git a/setup.py b/setup.py index 8c965af4..83a7faaa 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-ostree", - version="2.1.0.dev", + version="2.1.0", description="OSTree plugin for the Pulp Project", long_description=long_description, long_description_content_type="text/markdown",