Skip to content

Commit 0499acf

Browse files
committed
Release v0.10.27
1 parent 5dbadca commit 0499acf

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/publish-release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,12 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v5
2121
- uses: astral-sh/setup-uv@v7
22-
- run: uv build --all-packages
23-
- run: |
22+
- name: Build packages
23+
run: uv build --all-packages
24+
- name: Upload packages
25+
run: |
2426
for filename in dist/*; do
25-
uv publish "$filename"
27+
uv publish "$filename" || continue
2628
done
2729
2830
github-release:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Version history
22

3-
## 0.10.26
3+
## 0.10.27
44

55
- Use `ASGIWebSocketTransport` from `httpx-ws`.
66

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "uv_build"
44

55
[project]
66
name = "jupyverse"
7-
version = "0.10.26"
7+
version = "0.10.27"
88
description = "A set of FPS plugins implementing a Jupyter server"
99
keywords = ["jupyter", "server", "fastapi", "plugins"]
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)