Skip to content

Commit 8a0885d

Browse files
release: 0.91.0 (#1345)
* feat(client): Create Bedrock Mantle client (#1616) * feat: add bedrock mantle client with auth * fix: remove workspace id from mantle client * chore: rename bedrock mantle token env var * release: 0.91.0 --------- Co-authored-by: Cameron McAteer <246350779+cameron-mcateer@users.noreply.github.com> Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 40155da commit 8a0885d

8 files changed

Lines changed: 807 additions & 19 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.90.0"
2+
".": "0.91.0"
33
}

CHANGELOG.md

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

3+
## 0.91.0 (2026-04-07)
4+
5+
Full Changelog: [v0.90.0...v0.91.0](https://github.com/anthropics/anthropic-sdk-python/compare/v0.90.0...v0.91.0)
6+
7+
### Features
8+
9+
* **client:** Create Bedrock Mantle client ([#1616](https://github.com/anthropics/anthropic-sdk-python/issues/1616)) ([fd195a2](https://github.com/anthropics/anthropic-sdk-python/commit/fd195a2fa2cd44ebf4513e69f671def88d2b6ec9))
10+
311
## 0.90.0 (2026-04-07)
412

513
Full Changelog: [v0.89.0...v0.90.0](https://github.com/anthropics/anthropic-sdk-python/compare/v0.89.0...v0.90.0)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "anthropic"
3-
version = "0.90.0"
3+
version = "0.91.0"
44
description = "The official Python library for the anthropic API"
55
dynamic = ["readme"]
66
license = "MIT"

src/anthropic/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "anthropic"
4-
__version__ = "0.90.0" # x-release-please-version
4+
__version__ = "0.91.0" # x-release-please-version
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
from ._client import AnthropicBedrock as AnthropicBedrock, AsyncAnthropicBedrock as AsyncAnthropicBedrock
2+
from ._mantle import (
3+
AnthropicBedrockMantle as AnthropicBedrockMantle,
4+
AsyncAnthropicBedrockMantle as AsyncAnthropicBedrockMantle,
5+
)

0 commit comments

Comments
 (0)