diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cfe8ec5..ff74803 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0.dev +current_version = 0.2.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(1b)?(?P\d+)(\.(?P[a-z]+))? diff --git a/docs/conf.py b/docs/conf.py index 4963070..38f9a1b 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "0.2.0.dev" +version = "0.2.0" # The full version, including alpha/beta/rc tags. -release = "0.2.0.dev" +release = "0.2.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_gem/app/__init__.py b/pulp_gem/app/__init__.py index 7272eac..01f581b 100644 --- a/pulp_gem/app/__init__.py +++ b/pulp_gem/app/__init__.py @@ -6,5 +6,5 @@ class PulpGemPluginAppConfig(PulpPluginAppConfig): name = "pulp_gem.app" label = "gem" - version = "0.2.0.dev" + version = "0.2.0" python_package_name = "pulp-gem" diff --git a/setup.py b/setup.py index 9d179d5..5c0f7e5 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-gem", - version="0.2.0.dev", + version="0.2.0", description="Gemfile plugin for the Pulp Project", long_description=long_description, license="GPLv2+",