From 0cc3c4647a1e742fb0120c557065fe2346efc420 Mon Sep 17 00:00:00 2001 From: Subhash Bhushan Date: Sat, 16 Mar 2024 11:53:08 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.10.0=20=E2=86=92=200.11.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/conf.py | 2 +- docs/user/installation.rst | 4 ++-- pyproject.toml | 2 +- src/protean/__init__.py | 2 +- src/protean/template/{{package_name}}/setup.py.jinja | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 961f7425..a4bbfc01 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0 +current_version = 0.11.0 commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index edfa59d5..bfaeff0c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -28,7 +28,7 @@ year = "2021" author = "Subhash Bhushan C" copyright = "{0}, {1}".format(year, author) -version = release = "0.10.0" +version = release = "0.11.0" pygments_style = "autumn" templates_path = ["."] diff --git a/docs/user/installation.rst b/docs/user/installation.rst index 7f2e455e..290cb8c7 100644 --- a/docs/user/installation.rst +++ b/docs/user/installation.rst @@ -96,7 +96,7 @@ Use the ``protean`` command-line utility to verify the installation: .. code-block:: shell $ protean --version - 0.10.0 + 0.11.0 To verify that Protean can be seen by Python, try importing Proteam from a ``python`` shell: @@ -105,7 +105,7 @@ To verify that Protean can be seen by Python, try importing Proteam from a ``pyt $ python3 >>> import protean >>> print(protean.get_version()) - 0.10.0 + 0.11.0 ------------------- diff --git a/pyproject.toml b/pyproject.toml index 8b47305c..40ff4e4c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "protean" -version = "0.10.0" +version = "0.11.0" description = "Protean Application Framework" authors = ["Subhash Bhushan C "] license = "BSD 3-Clause" diff --git a/src/protean/__init__.py b/src/protean/__init__.py index fbf1e6dc..266db4f3 100644 --- a/src/protean/__init__.py +++ b/src/protean/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.10.0" +__version__ = "0.11.0" from .core.aggregate import BaseAggregate from .core.application_service import BaseApplicationService diff --git a/src/protean/template/{{package_name}}/setup.py.jinja b/src/protean/template/{{package_name}}/setup.py.jinja index 9a020af2..0f47b45b 100644 --- a/src/protean/template/{{package_name}}/setup.py.jinja +++ b/src/protean/template/{{package_name}}/setup.py.jinja @@ -55,7 +55,7 @@ setup( ], python_requires=">=3.7", install_requires=[ - "protean[message_db, {{ database }}]>=0.10.0", + "protean[message_db, {{ database }}]>=0.11.0", ], extras_require={ "test": testing_requires,