Skip to content

Commit

Permalink
Bump version: 0.10.0 → 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
subhashb committed Mar 16, 2024
1 parent 30820dd commit 0cc3c46
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.10.0
current_version = 0.11.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ["."]
Expand Down
4 changes: 2 additions & 2 deletions docs/user/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand All @@ -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
-------------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
license = "BSD 3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion src/protean/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.10.0"
__version__ = "0.11.0"

from .core.aggregate import BaseAggregate
from .core.application_service import BaseApplicationService
Expand Down
2 changes: 1 addition & 1 deletion src/protean/template/{{package_name}}/setup.py.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 0cc3c46

Please sign in to comment.