Skip to content

Commit

Permalink
Release 1.13.0rc1
Browse files Browse the repository at this point in the history
Signed-off-by: Bernd Verst <[email protected]>
  • Loading branch information
berndverst committed Feb 13, 2024
1 parent f4dc8ce commit 62bbee9
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Dapr SDK for Python

[![PyPI version](https://badge.fury.io/py/dapr.svg)](https://badge.fury.io/py/dapr)
[![PyPI version](https://badge.fury.io/py/dapr-dev.svg)](https://badge.fury.io/py/dapr-dev)
[![PyPI version](https://badge.fury.io/py/dapr.svg)](https://badge.fury.io/py/dapr)
![dapr-python](https://github.com/dapr/python-sdk/workflows/dapr-python/badge.svg?branch=master)
[![codecov](https://codecov.io/gh/dapr/python-sdk/branch/master/graph/badge.svg)](https://codecov.io/gh/dapr/python-sdk)
[![Discord](https://img.shields.io/discord/778680217417809931)](https://discord.com/channels/778680217417809931/778680217417809934)
Expand Down Expand Up @@ -49,7 +49,7 @@ pip3 install dapr-ext-fastapi

```sh
# Install Dapr client sdk
pip3 install dapr-dev
pip3 install dapr

# Install Dapr gRPC AppCallback service extension
pip3 install dapr-ext-grpc-dev
Expand Down
2 changes: 1 addition & 1 deletion dapr/version/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
limitations under the License.
"""

__version__ = '1.11.0rc1.dev'
__version__ = '1.13.0rc1'
2 changes: 1 addition & 1 deletion examples/demo_actor/demo_actor/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
dapr-ext-fastapi-dev>=1.11.0rc1.dev
dapr-ext-fastapi-dev>=1.13.0rc1
4 changes: 2 additions & 2 deletions examples/invoke-simple/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
dapr-ext-grpc-dev >= 1.11.0rc1.dev
dapr-dev >= 1.11.0rc1.dev
dapr-ext-grpc-dev >= 1.13.0rc1
dapr >= 1.13.0rc1
4 changes: 2 additions & 2 deletions examples/w3c-tracing/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dapr-ext-grpc-dev >= 1.11.0rc1.dev
dapr-dev >= 1.11.0rc1.dev
dapr-ext-grpc-dev >= 1.13.0rc1
dapr >= 1.13.0rc1
opentelemetry-sdk
opentelemetry-instrumentation-grpc
opentelemetry-exporter-zipkin
2 changes: 1 addition & 1 deletion ext/dapr-ext-fastapi/dapr/ext/fastapi/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
limitations under the License.
"""

__version__ = '1.11.0rc1.dev'
__version__ = '1.13.0rc1'
2 changes: 1 addition & 1 deletion ext/dapr-ext-fastapi/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ python_requires = >=3.8
packages = find_namespace:
include_package_data = True
install_requires =
dapr-dev >= 1.11.0rc1.dev
dapr >= 1.13.0rc1
uvicorn >= 0.11.6
fastapi >= 0.60.1

Expand Down
2 changes: 1 addition & 1 deletion ext/dapr-ext-grpc/dapr/ext/grpc/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
limitations under the License.
"""

__version__ = '1.11.0rc1.dev'
__version__ = '1.13.0rc1'
2 changes: 1 addition & 1 deletion ext/dapr-ext-grpc/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ python_requires = >=3.8
packages = find_namespace:
include_package_data = True
install_requires =
dapr-dev >= 1.11.0rc1.dev
dapr >= 1.13.0rc1
cloudevents >= 1.0.0

[options.packages.find]
Expand Down
2 changes: 1 addition & 1 deletion ext/dapr-ext-workflow/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ python_requires = >=3.8
packages = find_namespace:
include_package_data = True
install_requires =
dapr-dev >= 1.11.0rc1.dev
dapr >= 1.13.0rc1
durabletask >= 0.1.1a1

[options.packages.find]
Expand Down
2 changes: 1 addition & 1 deletion ext/flask_dapr/flask_dapr/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
limitations under the License.
"""

__version__ = '1.11.0rc1.dev'
__version__ = '1.13.0rc1'
2 changes: 1 addition & 1 deletion ext/flask_dapr/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ include_package_data = true
zip_safe = false
install_requires =
Flask >= 1.1
dapr-dev >= 1.11.0rc1.dev
dapr >= 1.13.0rc1

0 comments on commit 62bbee9

Please sign in to comment.