Skip to content

Commit 1f4bcba

Browse files
committed
Release v0.10.24
1 parent 98fefbf commit 1f4bcba

File tree

3 files changed

+9
-24
lines changed

3 files changed

+9
-24
lines changed

.github/workflows/publish-release.yml

Lines changed: 7 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -9,33 +9,18 @@ on:
99
- "[0-9]+.[0-9]+.[0-9]+rc[0-9]+"
1010

1111
jobs:
12-
build:
13-
runs-on: ubuntu-latest
14-
steps:
15-
- uses: actions/checkout@v5
16-
- uses: astral-sh/setup-uv@v6
17-
- run: |
18-
uv build --all-packages
19-
- uses: actions/upload-artifact@v4
20-
with:
21-
name: dist
22-
path: dist
23-
2412
pypi-publish:
25-
name: Upload release to PyPI
26-
needs: build
2713
runs-on: ubuntu-latest
28-
environment: release
14+
environment:
15+
name: release
2916
permissions:
3017
id-token: write
18+
contents: read
3119
steps:
32-
- name: Retrieve packages
33-
uses: actions/download-artifact@v5
34-
with:
35-
name: dist
36-
path: dist
37-
- name: Upload packages
38-
uses: pypa/gh-action-pypi-publish@release/v1
20+
- uses: actions/checkout@v5
21+
- uses: astral-sh/setup-uv@v6
22+
- run: uv build --all-packages
23+
- run: uv publish
3924

4025
github-release:
4126
name: Create 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.23
3+
## 0.10.24
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.23"
7+
version = "0.10.24"
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)