Skip to content

Commit 492ea9a

Browse files
committed
Merge tag '13.0.1'
2 parents d8ab09b + 157f790 commit 492ea9a

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

.github/workflows/release.yml

+6
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ jobs:
7171
# Don't release when running the workflow manually from GitHub's UI.
7272
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
7373
permissions:
74+
id-token: write
75+
attestations: write
7476
contents: write
7577
steps:
7678
- name: Download artifacts
@@ -79,6 +81,10 @@ jobs:
7981
pattern: dist-*
8082
merge-multiple: true
8183
path: dist
84+
- name: Attest provenance
85+
uses: actions/attest-build-provenance@v1
86+
with:
87+
subject-path: dist/*
8288
- name: Upload to PyPI
8389
uses: pypa/gh-action-pypi-publish@release/v1
8490
- name: Create GitHub release

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
include LICENSE
22
include src/websockets/py.typed
3+
include src/websockets/speedups.c # required when BUILD_EXTENSION=no

docs/project/changelog.rst

+10
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,16 @@ New features
5656
* Made the set of active connections available in the :attr:`Server.connections
5757
<asyncio.server.Server.connections>` property.
5858

59+
13.0.1
60+
------
61+
62+
*August 28, 2024*
63+
64+
Bug fixes
65+
.........
66+
67+
* Restored the C extension in the source distribution.
68+
5969
.. _13.0:
6070

6171
13.0

0 commit comments

Comments
 (0)