From 11056294536f5f4316bb88ddd7738f3fafd21eab Mon Sep 17 00:00:00 2001 From: Vianney Mixtur <59029806+VianneyMI@users.noreply.github.com> Date: Sat, 27 Jan 2024 16:42:56 +0100 Subject: [PATCH] 98 complete documentation section on search follow up (#104) * Working on search docs * Completed Basic Search section: Missing Faceted Search now * Fixed bug in search_meta chaining - (cf #102) * Prevent facet from crashing due to kwargs * Fixed detection of append facet case * Prevent kwargs form causing Compound search to crash * Completed search page doc * Update version follow up --- pyproject.toml | 6 +++--- src/monggregate/__init__.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e86efd1..66396a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "monggregate" -version = "0.19.1" +version = "0.20.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.19.1" +current_version = "0.20.0" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "bump version {old_version} -> {new_version}" commit = true @@ -49,4 +49,4 @@ push = true 'current_version = "{version}"', 'version = "{version}"' ] -"monggregate/__init__.py" = ['__version__ = "{version}"'] +"monggregate/src/__init__.py" = ['__version__ = "{version}"'] diff --git a/src/monggregate/__init__.py b/src/monggregate/__init__.py index 1cedfec..af490e8 100644 --- a/src/monggregate/__init__.py +++ b/src/monggregate/__init__.py @@ -5,7 +5,7 @@ from monggregate.pipeline import Pipeline -__version__ = "0.19.0" +__version__ = "0.20.0" __author__ = "Vianney Mixtur" __contact__ = "prenom.nom@outlook.fr" __copyright__ = "Copyright © 2022 Vianney Mixtur"