Skip to content

Commit 0cc3c46

Browse files
committed
Bump version: 0.10.0 → 0.11.0
1 parent 30820dd commit 0cc3c46

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.10.0
2+
current_version = 0.11.0
33
commit = True
44
tag = True
55

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
year = "2021"
2929
author = "Subhash Bhushan C"
3030
copyright = "{0}, {1}".format(year, author)
31-
version = release = "0.10.0"
31+
version = release = "0.11.0"
3232

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

docs/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
$ protean --version
99-
0.10.0
99+
0.11.0
100100
101101
To verify that Protean can be seen by Python, try importing Proteam from a ``python`` shell:
102102

@@ -105,7 +105,7 @@ To verify that Protean can be seen by Python, try importing Proteam from a ``pyt
105105
$ python3
106106
>>> import protean
107107
>>> print(protean.get_version())
108-
0.10.0
108+
0.11.0
109109
110110
-------------------
111111

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.10.0"
7+
version = "0.11.0"
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.10.0"
1+
__version__ = "0.11.0"
22

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

src/protean/template/{{package_name}}/setup.py.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ setup(
5555
],
5656
python_requires=">=3.7",
5757
install_requires=[
58-
"protean[message_db, {{ database }}]>=0.10.0",
58+
"protean[message_db, {{ database }}]>=0.11.0",
5959
],
6060
extras_require={
6161
"test": testing_requires,

0 commit comments

Comments
 (0)