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: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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; \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion convention/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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=<version>` validates it before release.
const packageVersion = "0.1.0"
const packageVersion = "0.2.0"
Loading