From 043858f021ee6871127c55d88ce918a6c6ff8ed1 Mon Sep 17 00:00:00 2001 From: Matthias Dellweg Date: Wed, 2 Mar 2022 15:12:51 +0100 Subject: [PATCH] Release 0.14.0 [noissue] --- .bumpversion.cfg | 2 +- pulpcore/cli/common/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 841d64556..50422ff4a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.14.0.dev +current_version = 0.14.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/pulpcore/cli/common/__init__.py b/pulpcore/cli/common/__init__.py index bd30760de..95ab5b1fc 100644 --- a/pulpcore/cli/common/__init__.py +++ b/pulpcore/cli/common/__init__.py @@ -18,7 +18,7 @@ from pulpcore.cli.common.debug import debug from pulpcore.cli.common.i18n import get_translation -__version__ = "0.14.0.dev" +__version__ = "0.14.0" translation = get_translation(__name__) _ = translation.gettext diff --git a/setup.py b/setup.py index e5e0d34bb..293fddefd 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ author="Pulp Team", author_email="pulp-list@redhat.com", url="https://github.com/pulp/pulp-cli", - version="0.14.0.dev", + version="0.14.0", packages=plugin_packages + extra_packages, package_data={"": ["py.typed", "locale/*/LC_MESSAGES/*.mo"]}, python_requires=">=3.6",