From 3af3ce189ca4f3c3a7dfcf34e42e855b332ff965 Mon Sep 17 00:00:00 2001 From: kdeldycke Date: Tue, 25 Apr 2023 03:40:58 +0000 Subject: [PATCH] [changelog] Bump major version to v5.0.0. --- .bumpversion.cfg | 2 +- changelog.md | 2 +- citation.cff | 2 +- click_extra/__init__.py | 2 +- pyproject.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 72133335f..54a2906cb 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.0.0 +current_version = 5.0.0 files = ./click_extra/__init__.py allow_dirty = True diff --git a/changelog.md b/changelog.md index 173af019a..78c237849 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Changelog -## {gh}`4.0.0 (unreleased) ` +## {gh}`5.0.0 (unreleased) ` ```{important} This version is not released yet and is under active development. diff --git a/citation.cff b/citation.cff index 0c9a1aa7a..00806a305 100644 --- a/citation.cff +++ b/citation.cff @@ -8,7 +8,7 @@ authors: email: kevin@deldycke.com orcid: "https://orcid.org/0000-0001-9748-9014" doi: 10.5281/zenodo.7116051 -version: 4.0.0 +version: 5.0.0 # The release date is kept up to date by the external workflows. See: # https://github.com/kdeldycke/workflows/blob/33b704b489c1aa18b7b7efbf963e153e91e1c810/.github/workflows/changelog.yaml#L135-L137 date-released: 2023-04-04 diff --git a/click_extra/__init__.py b/click_extra/__init__.py index ba4827af7..417345fe9 100644 --- a/click_extra/__init__.py +++ b/click_extra/__init__.py @@ -15,7 +15,7 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. """Expose package-wide elements.""" -__version__ = "4.0.0" +__version__ = "5.0.0" """Examples of valid version strings according :pep:`440#version-scheme`: .. code-block:: python diff --git a/pyproject.toml b/pyproject.toml index 2007ff9f0..231ec8117 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] # Docs: https://python-poetry.org/docs/pyproject/ name = "click-extra" -version = "4.0.0" +version = "5.0.0" description = "🌈 Extra colorization and configuration loading for Click." license = 'GPL-2.0-or-later' authors = ["Kevin Deldycke "]