Skip to content

Commit 02fd096

Browse files
authored
Merge branch 'main' into feature/async-workflow-sdk
Signed-off-by: Albert Callarisa <[email protected]>
2 parents 5f81dbf + 896c761 commit 02fd096

File tree

15 files changed

+18
-18
lines changed

15 files changed

+18
-18
lines changed

.github/workflows/validate_examples.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
echo "Found $RUNTIME_VERSION"
7171
- name: Determine latest Dapr Cli version
7272
run: |
73-
export CLI_VERSION=$(curl "https://api.github.com/repos/dapr/cli/releases?per_page=1&page=1" --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' | jq '.[0].tag_name'| tr -d '",v')
73+
export CLI_VERSION=$(curl "https://api.github.com/repos/dapr/cli/releases/latest" --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' | jq '.tag_name'| tr -d '",v')
7474
echo "DAPR_CLI_VER=$CLI_VERSION" >> $GITHUB_ENV
7575
echo "Found $CLI_VERSION"
7676
- name: Set up Python ${{ matrix.python_ver }}

dapr/version/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
limitations under the License.
1414
"""
1515

16-
__version__ = '1.16.1rc1'
16+
__version__ = '1.16.0.dev'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dapr-ext-fastapi>=1.16.1rc1
1+
dapr-ext-fastapi>=1.16.0.dev
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dapr-ext-workflow>=1.16.1rc1
1+
dapr-ext-workflow>=1.16.0.dev
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
dapr-ext-grpc >= 1.16.1rc1
2-
dapr >= 1.16.1rc1
1+
dapr-ext-grpc >= 1.16.0.dev
2+
dapr >= 1.16.0.dev
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
dapr-ext-grpc >= 1.16.1rc1
2-
dapr >= 1.16.1rc1
1+
dapr-ext-grpc >= 1.16.0.dev
2+
dapr >= 1.16.0.dev
33
opentelemetry-sdk
44
opentelemetry-instrumentation-grpc
55
opentelemetry-exporter-zipkin

examples/workflow/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
dapr-ext-workflow>=1.16.1rc1
2-
dapr>=1.16.1rc1
1+
dapr-ext-workflow>=1.16.0.dev
2+
dapr>=1.16.0.dev

ext/dapr-ext-fastapi/dapr/ext/fastapi/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
limitations under the License.
1414
"""
1515

16-
__version__ = '1.16.1rc1'
16+
__version__ = '1.16.0.dev'

ext/dapr-ext-fastapi/setup.cfg

Lines changed: 1 addition & 1 deletion
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 >= 1.16.1rc1
27+
dapr >= 1.16.0.dev
2828
uvicorn >= 0.11.6
2929
fastapi >= 0.60.1
3030

ext/dapr-ext-grpc/dapr/ext/grpc/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
limitations under the License.
1414
"""
1515

16-
__version__ = '1.16.1rc1'
16+
__version__ = '1.16.0.dev'

0 commit comments

Comments
 (0)