Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
MIN_RUNTIME_VERSION="1.17.0"
MIN_RUNTIME_VERSION="1.18.0"
RUNTIME_VERSION=$(curl -fsS -H "Authorization: Bearer $GITHUB_TOKEN" \
"https://api.github.com/repos/dapr/dapr/releases?per_page=10" | \
jq -r 'map(select(.prerelease == false)) | sort_by(.created_at) | reverse | .[0].tag_name | ltrimstr("v")')
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ pip3 install "dapr-ext-grpc @ git+https://github.com/dapr/python-sdk.git@main#su
pip3 install "dapr-ext-fastapi @ git+https://github.com/dapr/python-sdk.git@main#subdirectory=ext/dapr-ext-fastapi"
```

Replace `@main` with a commit SHA or release branch (e.g. `@release-1.17`)
Replace `@main` with a commit SHA or release branch (e.g. `@release-1.18`)
to pin to a specific point in history.

### Try out examples
Expand Down Expand Up @@ -148,7 +148,7 @@ The generated files will be found in `docs/_build`.

```sh
uv sync --all-packages --group dev
export DAPR_BRANCH=release-1.17 # Optional, defaults to master
export DAPR_BRANCH=release-1.18 # Optional, defaults to master
uv run ./tools/regen_grpcclient.sh
```

Expand Down
Loading