Skip to content

Commit

Permalink
98 complete documentation section on search follow up (#104)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
VianneyMI committed Jan 27, 2024
1 parent 726425f commit 1105629
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]" }]
Expand Down Expand Up @@ -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
Expand All @@ -49,4 +49,4 @@ push = true
'current_version = "{version}"',
'version = "{version}"'
]
"monggregate/__init__.py" = ['__version__ = "{version}"']
"monggregate/src/__init__.py" = ['__version__ = "{version}"']
2 changes: 1 addition & 1 deletion src/monggregate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from monggregate.pipeline import Pipeline


__version__ = "0.19.0"
__version__ = "0.20.0"
__author__ = "Vianney Mixtur"
__contact__ = "[email protected]"
__copyright__ = "Copyright © 2022 Vianney Mixtur"
Expand Down

0 comments on commit 1105629

Please sign in to comment.