diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3b9c84877..4a689c143 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.1 +current_version = 3.0.2.dev 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 a863f8262..6f6d2f03a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = "3.0.1" +version = "3.0.2.dev" # The full version, including alpha/beta/rc tags. -release = "3.0.1" +release = "3.0.2.dev" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_deb/app/__init__.py b/pulp_deb/app/__init__.py index 1c1a11e0f..fffc36af5 100644 --- a/pulp_deb/app/__init__.py +++ b/pulp_deb/app/__init__.py @@ -6,5 +6,5 @@ class PulpDebPluginAppConfig(PulpPluginAppConfig): name = "pulp_deb.app" label = "deb" - version = "3.0.1" + version = "3.0.2.dev" python_package_name = "pulp_deb" diff --git a/setup.py b/setup.py index 8bf83e03c..182cecf8c 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-deb", - version="3.0.1", + version="3.0.2.dev", description="pulp-deb plugin for the Pulp Project", long_description=long_description, long_description_content_type="text/markdown",