diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1502235..6d274e9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0a3.dev +current_version = 0.1.0a3 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 ac8d836..a162da1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,9 +58,9 @@ # built documents. # # The short X.Y version. -version = "0.1.0a3.dev" +version = "0.1.0a3" # The full version, including alpha/beta/rc tags. -release = "0.1.0a3.dev" +release = "0.1.0a3" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_npm/app/__init__.py b/pulp_npm/app/__init__.py index 8a86686..4745163 100644 --- a/pulp_npm/app/__init__.py +++ b/pulp_npm/app/__init__.py @@ -6,4 +6,4 @@ class PulpNpmPluginAppConfig(PulpPluginAppConfig): name = "pulp_npm.app" label = "npm" - version = "0.1.0a3.dev" + version = "0.1.0a3" diff --git a/requirements.txt b/requirements.txt index 29f1c98..ebf4c68 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -pulpcore>=3.0.0 +pulpcore>=3.11,<3.13 diff --git a/setup.py b/setup.py index a7f474d..3b402bd 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="pulp-npm", - version="0.1.0a3.dev", + version="0.1.0a3", description="pulp-npm plugin for the Pulp Project", license="GPLv2+", author="Pulp NPM Plugin Project Developers",