Skip to content

Commit 0378dfd

Browse files
committed
chore(release): release 5.3.3
1 parent 7deb302 commit 0378dfd

File tree

5 files changed

+81
-3
lines changed

5 files changed

+81
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "5.3.2"
2+
".": "5.3.3"
33
}
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
name: Maintenance Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v5.*"
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
compile:
13+
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
17+
steps:
18+
- name: Checkout repo
19+
uses: actions/checkout@v4
20+
- name: Set up python
21+
uses: actions/setup-python@v6
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
- name: Bootstrap poetry
25+
run: |
26+
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
27+
- name: Install dependencies
28+
run: poetry install
29+
- name: Compile
30+
run: poetry run mypy src/
31+
test:
32+
runs-on: ubuntu-latest
33+
needs: compile
34+
strategy:
35+
matrix:
36+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
37+
steps:
38+
- name: Checkout repo
39+
uses: actions/checkout@v4
40+
- name: Set up python
41+
uses: actions/setup-python@v6
42+
with:
43+
python-version: ${{ matrix.python-version }}
44+
- name: Bootstrap poetry
45+
run: |
46+
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
47+
- name: Install dependencies
48+
run: poetry install
49+
- name: Test
50+
run: poetry run pytest -rP .
51+
publish:
52+
runs-on: ubuntu-latest
53+
needs: test
54+
steps:
55+
- name: Checkout repo
56+
uses: actions/checkout@v4
57+
- name: Set up python
58+
uses: actions/setup-python@v6
59+
with:
60+
python-version: "3.8"
61+
- name: Bootstrap poetry
62+
run: |
63+
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
64+
- name: Install dependencies
65+
run: poetry install
66+
- name: Build package
67+
run: poetry build
68+
- name: Publish to PyPI
69+
env:
70+
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}
71+
run: poetry publish

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [5.3.3](https://github.com/deepgram/deepgram-python-sdk/compare/v5.3.2...v5.3.3) (2026-02-24)
4+
5+
6+
### Bug Fixes
7+
8+
* **websockets:** tolerate unknown message types from API ([#671](https://github.com/deepgram/deepgram-python-sdk/issues/671)) ([7deb302](https://github.com/deepgram/deepgram-python-sdk/commit/7deb302))
9+
310
## [5.3.2](https://github.com/deepgram/deepgram-python-sdk/compare/v5.3.0...v5.3.2) (2026-01-29)
411

512

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dynamic = ["version"]
44

55
[tool.poetry]
66
name = "deepgram-sdk"
7-
version = "5.3.2"
7+
version = "5.3.3"
88
description = ""
99
readme = "README.md"
1010
authors = []

src/deepgram/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def get_headers(self) -> typing.Dict[str, str]:
2626
"X-Fern-Language": "Python",
2727
"X-Fern-SDK-Name": "deepgram",
2828
# x-release-please-start-version
29-
"X-Fern-SDK-Version": "5.3.2",
29+
"X-Fern-SDK-Version": "5.3.3",
3030
# x-release-please-end
3131
**(self.get_custom_headers() or {}),
3232
}

0 commit comments

Comments
 (0)