Skip to content

Commit fda2f2e

Browse files
Updates dev version to 1.15.0
Signed-off-by: Elena Kolevska <[email protected]>
1 parent 157a2db commit fda2f2e

File tree

16 files changed

+19
-19
lines changed

16 files changed

+19
-19
lines changed

Diff for: dapr/version/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
limitations under the License.
1414
"""
1515

16-
__version__ = '1.14.0rc1.dev'
16+
__version__ = '1.15.0.dev'

Diff for: daprdocs/content/en/python-sdk-docs/python-actor.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ async def main():
5656

5757
## Sample
5858

59-
Visit [this page](https://github.com/dapr/python-sdk/tree/v1.14.0/examples/demo_actor) for a runnable actor sample.
59+
Visit [this page](https://github.com/dapr/python-sdk/tree/main/examples/demo_actor) for a runnable actor sample.
6060

6161

6262
## Mock Actor Testing

Diff for: examples/demo_actor/demo_actor/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dapr-ext-fastapi-dev>=1.13.0rc1.dev
1+
dapr-ext-fastapi-dev>=1.15.0.dev
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dapr-ext-workflow-dev>=0.0.1rc1.dev
1+
dapr-ext-workflow-dev>=1.15.0.dev

Diff for: examples/error_handling/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Example - Error handling
22

3-
This guide demonstrates handling `DaprGrpcError` errors when using the Dapr python-SDK. It's important to note that not all Dapr gRPC status errors are currently captured and transformed into a `DaprGrpcError` by the SDK. Efforts are ongoing to enhance this aspect, and contributions are welcome. For detailed information on error handling in Dapr, refer to the [official documentation](https://docs.dapr.io/reference/errors).
3+
This guide demonstrates handling `DaprGrpcError` errors when using the Dapr python-SDK. It's important to note that not all Dapr gRPC status errors are currently captured and transformed into a `DaprGrpcError` by the SDK. Efforts are ongoing to enhance this aspect, and contributions are welcome. For detailed information on error handling in Dapr, refer to the [official documentation](https://docs.dapr.io/developing-applications/error-codes/).
44

55
The example involves creating a DaprClient and invoking the save_state method.
66
It uses the default configuration from Dapr init in [self-hosted mode](https://github.com/dapr/cli#install-dapr-on-your-local-machine-self-hosted).

Diff for: examples/invoke-simple/requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
dapr-ext-grpc-dev >= 1.13.0rc1.dev
2-
dapr-dev >= 1.13.0rc1.dev
1+
dapr-ext-grpc-dev >= 1.15.0.dev
2+
dapr-dev >= 1.15.0.dev

Diff for: examples/w3c-tracing/requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
dapr-ext-grpc-dev >= 1.13.0rc1.dev
2-
dapr-dev >= 1.13.0rc1.dev
1+
dapr-ext-grpc-dev >= 1.15.0.dev
2+
dapr-dev >= 1.15.0.dev
33
opentelemetry-sdk
44
opentelemetry-instrumentation-grpc
55
opentelemetry-exporter-zipkin

Diff for: examples/workflow/requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
dapr-ext-workflow-dev>=0.4.1rc1.dev
2-
dapr-dev>=1.13.0rc1.dev
1+
dapr-ext-workflow-dev>=1.15.0.dev
2+
dapr-dev>=1.15.0.dev

Diff for: ext/dapr-ext-fastapi/dapr/ext/fastapi/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
limitations under the License.
1414
"""
1515

16-
__version__ = '1.14.0rc1.dev'
16+
__version__ = '1.15.0.dev'

Diff for: ext/dapr-ext-fastapi/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ python_requires = >=3.9
2424
packages = find_namespace:
2525
include_package_data = True
2626
install_requires =
27-
dapr-dev >= 1.13.0rc1.dev
27+
dapr-dev >= 1.15.0.dev
2828
uvicorn >= 0.11.6
2929
fastapi >= 0.60.1
3030

Diff for: ext/dapr-ext-grpc/dapr/ext/grpc/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
limitations under the License.
1414
"""
1515

16-
__version__ = '1.14.0rc1.dev'
16+
__version__ = '1.15.0.dev'

Diff for: ext/dapr-ext-grpc/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ python_requires = >=3.9
2424
packages = find_namespace:
2525
include_package_data = True
2626
install_requires =
27-
dapr-dev >= 1.13.0rc1.dev
27+
dapr-dev >= 1.15.0.dev
2828
cloudevents >= 1.0.0
2929

3030
[options.packages.find]

Diff for: ext/dapr-ext-workflow/dapr/ext/workflow/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
limitations under the License.
1414
"""
1515

16-
__version__ = '0.5.0rc1.dev'
16+
__version__ = '1.15.0.dev'

Diff for: ext/dapr-ext-workflow/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ python_requires = >=3.9
2424
packages = find_namespace:
2525
include_package_data = True
2626
install_requires =
27-
dapr-dev >= 1.13.0rc1.dev
27+
dapr-dev >= 1.15.0.dev
2828
durabletask-dapr >= 0.2.0a7
2929

3030
[options.packages.find]

Diff for: ext/flask_dapr/flask_dapr/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
limitations under the License.
1414
"""
1515

16-
__version__ = '1.14.0rc1.dev'
16+
__version__ = '1.15.0.dev'

Diff for: ext/flask_dapr/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ include_package_data = true
2626
zip_safe = false
2727
install_requires =
2828
Flask >= 1.1
29-
dapr-dev >= 1.13.0rc1.dev
29+
dapr-dev >= 1.15.0.dev

0 commit comments

Comments
 (0)