From 9aa59a0759893fd080af2895a87055a18ec6ec49 Mon Sep 17 00:00:00 2001 From: Vianney Mixtur <59029806+VianneyMI@users.noreply.github.com> Date: Wed, 17 Apr 2024 21:56:20 +0200 Subject: [PATCH] bump version 0.21.0b1 -> 0.21.0 (#114) --- pyproject.toml | 4 ++-- src/monggregate/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bc19905..f4a1ce8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "monggregate" -version = "0.21.0b1" +version = "0.21.0" description = "MongoDB aggregation pipelines made easy. Joins, grouping, counting and much more..." readme = "README.md" authors = [{ name = "Vianney Mixtur", email = "vianney.mixtur@outlook.fr" }] @@ -37,7 +37,7 @@ Homepage = "https://github.com/VianneyMI/monggregate" documentation = "https://vianneymi.github.io/monggregate/" [tool.bumpver] -current_version = "0.21.0b1" +current_version = "0.21.0" version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" commit_message = "bump version {old_version} -> {new_version}" commit = true diff --git a/src/monggregate/__init__.py b/src/monggregate/__init__.py index b4323c8..8ac120d 100644 --- a/src/monggregate/__init__.py +++ b/src/monggregate/__init__.py @@ -5,7 +5,7 @@ from monggregate.pipeline import Pipeline -__version__ = "0.21.0b1" +__version__ = "0.21.0" __author__ = "Vianney Mixtur" __contact__ = "prenom.nom@outlook.fr" __copyright__ = "Copyright © 2022 Vianney Mixtur"