diff --git a/CHANGELOG.md b/CHANGELOG.md index a66ab68..572d5bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ existing `0.1.0` release; earlier development prereleases are not listed. ## [Unreleased] +## [0.2.0] - 2026-09-24 + ### Changed - Forward and Managed clients now wait at most 10 minutes for response headers by default, matching Anthropic's Go SDK. This timeout does not limit response-body reads or SSE duration; explicit HTTP clients and request/context deadlines retain their own settings. diff --git a/Makefile b/Makefile index f18a815..076eb94 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ lint: check-version: @set -eu; version="$${VERSION:-}"; \ if test -z "$$version"; then \ - echo "VERSION is required (for example: make check-version VERSION=0.1.0)" >&2; exit 1; \ + echo "VERSION is required (for example: make check-version VERSION=0.2.0)" >&2; exit 1; \ fi; \ if ! printf '%s\n' "$$version" | grep -Eq '^(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)(-[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*)?$$'; then \ echo "VERSION must be canonical Go semver without a v prefix or build metadata: $$version" >&2; exit 1; \ diff --git a/README.md b/README.md index f773133..1ac877c 100644 --- a/README.md +++ b/README.md @@ -37,10 +37,10 @@ The SDK ships two clients that share authentication, transport, retries, error h ## Installation ```sh -go get github.com/QoderAI/qoder-cloud-agents-sdk-go@v0.1.0 +go get github.com/QoderAI/qoder-cloud-agents-sdk-go@v0.2.0 ``` -`v0.1.0` is the current release, so `@latest` resolves to it. It is pre-1.0, so pin a version explicitly and keep the version your build resolved in `go.mod` and `go.sum`. +This SDK is pre-1.0, so pin a version explicitly and keep the version your build resolved in `go.mod` and `go.sum`. ## Requirements diff --git a/convention/version.go b/convention/version.go index 74e6944..36679ef 100644 --- a/convention/version.go +++ b/convention/version.go @@ -4,4 +4,4 @@ package convention // X-Qoder-Package-Version. It must match the released module tag, otherwise the // server-side SDK version statistics describe a version that was never shipped. // `make check-version VERSION=` validates it before release. -const packageVersion = "0.1.0" +const packageVersion = "0.2.0"