Skip to content

Commit

Permalink
Bump version: 0.11.0 → 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
subhashb committed Jun 17, 2024
1 parent 45f0ea2 commit 317db80
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.11.0
current_version = 0.12.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion docs-sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
year = datetime.date.today().strftime("%Y")
author = "Subhash Bhushan C"
copyright = "{0}, {1}".format(year, author)
version = release = "0.11.0"
version = release = "0.12.0"

pygments_style = "autumn"
templates_path = ["."]
Expand Down
4 changes: 2 additions & 2 deletions docs-sphinx/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
$ python -m protean --version
0.11.0
0.12.0
To verify that Protean can be seen by your current installation of Python,
try importing Protean from a ``python`` shell:
Expand All @@ -106,7 +106,7 @@ try importing Protean from a ``python`` shell:
$ python3
>>> import protean
>>> protean.get_version()
0.11.0
0.12.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.11.0"
version = "0.12.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.11.0"
__version__ = "0.12.0"

from .core.aggregate import BaseAggregate, atomic_change
from .core.application_service import BaseApplicationService
Expand Down
2 changes: 1 addition & 1 deletion src/protean/template/domain_template/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ python = "^3.11"
{%- set _ = extras.append("redis") -%}
{%- endif -%}
{%- endif %}
protean = {version = "0.11.0", extras={{ extras }} }
protean = {version = "0.12.0", extras={{ extras }} }

[tool.poetry.group.test]
optional = true
Expand Down

0 comments on commit 317db80

Please sign in to comment.