Skip to content

Commit

Permalink
111 bump version to 0210b1 (#112)
Browse files Browse the repository at this point in the history
* Updated gitignoreou

* Bumped version
  • Loading branch information
VianneyMI committed Apr 17, 2024
1 parent 43e536c commit db6fe51
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 53 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
venv
.venv
.env
notes.md
**/*~
Expand Down
104 changes: 52 additions & 52 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,52 +1,52 @@
# pyproject.toml

[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "monggregate"
version = "0.21.0b0"
description = "MongoDB aggregation pipelines made easy. Joins, grouping, counting and much more..."
readme = "README.md"
authors = [{ name = "Vianney Mixtur", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent"
]
keywords = ["nosql", "mongo", "aggregation", "pymongo", "pandas", "pydantic"]
dependencies = [
"pydantic >= 1.8.0",
"pyhumps >= 3.0.2",
"typing_extensions >= 4.0.1"
]
requires-python = ">=3.10"


[project.optional-dependencies]
mongo = ["pymongo >= 3.0.0"]
dev = ["bumpver", "pytest", "mypy", "pylint"]

[project.urls]
Homepage = "https://github.com/VianneyMI/monggregate"
documentation = "https://vianneymi.github.io/monggregate/"

[tool.bumpver]
current_version = "0.21.0b0"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false

[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"'
]
"monggregate/src/__init__.py" = ['__version__ = "{version}"']
# pyproject.toml

[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "monggregate"
version = "0.21.0b1"
description = "MongoDB aggregation pipelines made easy. Joins, grouping, counting and much more..."
readme = "README.md"
authors = [{ name = "Vianney Mixtur", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent"
]
keywords = ["nosql", "mongo", "aggregation", "pymongo", "pandas", "pydantic"]
dependencies = [
"pydantic >= 1.8.0",
"pyhumps >= 3.0.2",
"typing_extensions >= 4.0.1"
]
requires-python = ">=3.10"


[project.optional-dependencies]
mongo = ["pymongo >= 3.0.0"]
dev = ["bumpver", "pytest", "mypy", "pylint"]

[project.urls]
Homepage = "https://github.com/VianneyMI/monggregate"
documentation = "https://vianneymi.github.io/monggregate/"

[tool.bumpver]
current_version = "0.21.0b1"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false

[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"'
]
"src/monggregate/__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.21.0b0"
__version__ = "0.21.0b1"
__author__ = "Vianney Mixtur"
__contact__ = "[email protected]"
__copyright__ = "Copyright © 2022 Vianney Mixtur"
Expand Down

0 comments on commit db6fe51

Please sign in to comment.