feat: v1.0.0 stable release — tracks upstream Python SDK v2.0.4

This commit is contained in:
2026-03-17 11:34:09 +01:00
parent 94a938b733
commit b1f0fc4907
3 changed files with 13 additions and 1 deletions

View File

@@ -1,3 +1,11 @@
## v1.0.0 — 2026-03-17
Stable release. Tracks upstream Python SDK v2.0.4.
No API changes from v0.2.0. This release signals that the SDK surface is
stable and follows Go module semver conventions — breaking changes will only
occur in future major versions.
## v0.2.0 — 2026-03-17
Sync with upstream Python SDK v2.0.4. Upstream reference changed from OpenAPI

View File

@@ -219,6 +219,10 @@ if err != nil {
This SDK tracks the [official Mistral Python SDK](https://github.com/mistralai/client-python)
as its upstream reference for API surface and type definitions.
| SDK Version | Upstream Python SDK |
|-------------|---------------------|
| v1.0.0 | v2.0.4 |
## License
[MIT](LICENSE)

View File

@@ -6,7 +6,7 @@ import (
)
// Version is the SDK version string.
const Version = "0.2.0"
const Version = "1.0.0"
const (
defaultBaseURL = "https://api.mistral.ai"