From db6fe512e40c18fcd7393dabb79016c726185b4f Mon Sep 17 00:00:00 2001 From: Vianney Mixtur <59029806+VianneyMI@users.noreply.github.com> Date: Wed, 17 Apr 2024 21:27:54 +0200 Subject: [PATCH] 111 bump version to 0210b1 (#112) * Updated gitignoreou * Bumped version --- .gitignore | 1 + pyproject.toml | 104 ++++++++++++++++++------------------ src/monggregate/__init__.py | 2 +- 3 files changed, 54 insertions(+), 53 deletions(-) diff --git a/.gitignore b/.gitignore index 0ca75bd..f776a28 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ venv +.venv .env notes.md **/*~ diff --git a/pyproject.toml b/pyproject.toml index f86dfff..bc19905 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = "vianney.mixtur@outlook.fr" }] -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 = "vianney.mixtur@outlook.fr" }] +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}"'] diff --git a/src/monggregate/__init__.py b/src/monggregate/__init__.py index 6240daa..b4323c8 100644 --- a/src/monggregate/__init__.py +++ b/src/monggregate/__init__.py @@ -5,7 +5,7 @@ from monggregate.pipeline import Pipeline -__version__ = "0.21.0b0" +__version__ = "0.21.0b1" __author__ = "Vianney Mixtur" __contact__ = "prenom.nom@outlook.fr" __copyright__ = "Copyright © 2022 Vianney Mixtur"