diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cc6548b9e..269c0ac6d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 7.2.1 +current_version = 8.0.0 files = ./mail_deduplicate/__init__.py allow_dirty = True diff --git a/changelog.md b/changelog.md index dc0eba08c..a1df9b461 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # ChangeLog -## {gh}`7.2.1 (unreleased) ` +## {gh}`8.0.0 (unreleased) ` ```{important} This version is not released yet and is under active development. diff --git a/citation.cff b/citation.cff index ec40f5e45..a3a7a011c 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.7364257 -version: 7.2.1 +version: 8.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-02-15 diff --git a/mail_deduplicate/__init__.py b/mail_deduplicate/__init__.py index 0232c728c..2cdb5f0fe 100644 --- a/mail_deduplicate/__init__.py +++ b/mail_deduplicate/__init__.py @@ -21,7 +21,7 @@ from boltons.iterutils import unique -__version__ = "7.2.1" +__version__ = "8.0.0" from click_extra.logging import logger # noqa: F401 diff --git a/pyproject.toml b/pyproject.toml index 6b7357055..76d605407 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] # Docs: https://python-poetry.org/docs/pyproject/ name = "mail-deduplicate" -version = "7.2.1" +version = "8.0.0" description = "📧 CLI to deduplicate mails from mail boxes." license = 'GPL-2.0-or-later' authors = ["Kevin Deldycke "]