Skip to content

Commit 6dd797a

Browse files
committed
Bump version: 0.12.0 → 0.12.1
1 parent 9ea7457 commit 6dd797a

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.12.0
2+
current_version = 0.12.1
33
commit = True
44
tag = True
55

docs-sphinx/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
year = datetime.date.today().strftime("%Y")
3030
author = "Subhash Bhushan C"
3131
copyright = "{0}, {1}".format(year, author)
32-
version = release = "0.12.0"
32+
version = release = "0.12.1"
3333

3434
pygments_style = "autumn"
3535
templates_path = ["."]

docs-sphinx/user/installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Use the ``protean`` command-line utility to verify the installation:
9696
.. code-block:: shell
9797
9898
$ python -m protean --version
99-
0.12.0
99+
0.12.1
100100
101101
To verify that Protean can be seen by your current installation of Python,
102102
try importing Protean from a ``python`` shell:
@@ -106,7 +106,7 @@ try importing Protean from a ``python`` shell:
106106
$ python3
107107
>>> import protean
108108
>>> protean.get_version()
109-
0.12.0
109+
0.12.1
110110
111111
-------------------
112112

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "protean"
7-
version = "0.12.0"
7+
version = "0.12.1"
88
description = "Protean Application Framework"
99
authors = ["Subhash Bhushan C <[email protected]>"]
1010
license = "BSD 3-Clause"

src/protean/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.12.0"
1+
__version__ = "0.12.1"
22

33
from .core.aggregate import BaseAggregate, atomic_change
44
from .core.application_service import BaseApplicationService

src/protean/template/domain_template/pyproject.toml.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ python = "^3.11"
3838
{%- set _ = extras.append("redis") -%}
3939
{%- endif -%}
4040
{%- endif %}
41-
protean = {version = "0.12.0", extras={{ extras }} }
41+
protean = {version = "0.12.1", extras={{ extras }} }
4242

4343
[tool.poetry.group.test]
4444
optional = true

0 commit comments

Comments
 (0)