Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.2.3"
".": "2.0.0"
}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog

## [2.0.0](https://github.com/SpeechifyInc/speechify-api-sdk-python/compare/1.2.3...2.0.0) (2026-06-22)


### ⚠ BREAKING CHANGES

* `Speechify(token=...)` is now `Speechify(api_key=...)`. The `tts.` namespace has been removed β€” call sites move from `client.tts.audio.speech(...)` to `client.audio.speech(...)` and from `client.tts.voices.X` to `client.voices.X`. The `livekit` extra-dependency has been removed; if you were importing it transitively through `speechify-api`, install it explicitly. Generator-line crossed `4.x` β†’ `5.x`, so internal/private code paths have moved.

### Features

* regenerate SDK on fern-python-sdk@5.14.20 with TTS-only surface ([#16](https://github.com/SpeechifyInc/speechify-api-sdk-python/issues/16)) ([2ebb0a5](https://github.com/SpeechifyInc/speechify-api-sdk-python/commit/2ebb0a5e81ec11eab11215f932fb3f529edaf890))
Loading