Skip to content

Commit 005b3d0

Browse files
Release 2.2.4
1 parent acea234 commit 005b3d0

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "murf"
33

44
[tool.poetry]
55
name = "murf"
6-
version = "2.2.3"
6+
version = "2.2.4"
77
description = ""
88
readme = "README.md"
99
authors = []

src/murf/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
from .client import AsyncMurf, Murf
5656
from .dubbing_client import MurfDub
5757
from .environment import MurfEnvironment
58+
from .region import MurfRegion
5859
from .stream_input import ReceiveMessage, SendMessage, TextToSpeechModel
5960
from .version import __version__
6061

@@ -87,6 +88,7 @@
8788
"MurfApiTranslationResponse",
8889
"MurfDub",
8990
"MurfEnvironment",
91+
"MurfRegion",
9092
"PaymentRequiredError",
9193
"PronunciationDetail",
9294
"PronunciationDetailType",

src/murf/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def get_headers(self) -> typing.Dict[str, str]:
2323
headers: typing.Dict[str, str] = {
2424
"X-Fern-Language": "Python",
2525
"X-Fern-SDK-Name": "murf",
26-
"X-Fern-SDK-Version": "2.2.3",
26+
"X-Fern-SDK-Version": "2.2.4",
2727
}
2828
if self._api_key is not None:
2929
headers["api-key"] = self._api_key

0 commit comments

Comments
 (0)