diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8efe3754f..d2c59e8c7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.13.0.dev +current_version = 2.13.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 7cc0bc391..c63e433bc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = "2.13.0.dev" +version = "2.13.0" # The full version, including alpha/beta/rc tags. -release = "2.13.0.dev" +release = "2.13.0" # 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 7904708ec..f98189db0 100644 --- a/pulp_deb/app/__init__.py +++ b/pulp_deb/app/__init__.py @@ -6,4 +6,4 @@ class PulpDebPluginAppConfig(PulpPluginAppConfig): name = "pulp_deb.app" label = "deb" - version = "2.13.0.dev" + version = "2.13.0" diff --git a/requirements.txt b/requirements.txt index e1b2c8133..7f1411cee 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -pulpcore>=3.12 +pulpcore>=3.12,<3.15 python-debian>=0.1.36 diff --git a/setup.py b/setup.py index 9ef488441..cdcca8b30 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-deb", - version="2.13.0.dev", + version="2.13.0", description="pulp-deb plugin for the Pulp Project", long_description=long_description, long_description_content_type="text/markdown",