From b1f0fc49075ecdc280b4e3052075868d70ddc834 Mon Sep 17 00:00:00 2001 From: vikingowl Date: Tue, 17 Mar 2026 11:34:09 +0100 Subject: [PATCH] =?UTF-8?q?feat:=20v1.0.0=20stable=20release=20=E2=80=94?= =?UTF-8?q?=20tracks=20upstream=20Python=20SDK=20v2.0.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 8 ++++++++ README.md | 4 ++++ mistral.go | 2 +- 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5afb37f..c9f55f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 7fe1874..6b6e7f6 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/mistral.go b/mistral.go index 4fff1da..d55bc5a 100644 --- a/mistral.go +++ b/mistral.go @@ -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"