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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ All notable changes to the Apify Go client are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.5] - 2026-07-03

### Changed
- Bumped `API_SPEC_VERSION` to `v2-2026-07-02T131926Z`.
- Bumped `CLIENT_VERSION` to `0.4.5`.
- Synced the `API_SPEC_VERSION` reference in the `README.md` "Versioning" section to match `version.go`.

## [0.4.4] - 2026-07-01

### Changed
- Bumped `API_SPEC_VERSION` to `v2-2026-07-01T115402Z`.
- Bumped `CLIENT_VERSION` to `0.4.4`.
- Synced the `API_SPEC_VERSION` reference in the `README.md` "Versioning" section to match `version.go`.

## [0.4.3] - 2026-06-30

### Changed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ func main() {

- `apify.CLIENT_VERSION` — the semantic version of this library.
- `apify.API_SPEC_VERSION` — the Apify OpenAPI spec version this client was built against
(`v2-2026-06-30T091455Z`).
(`v2-2026-07-02T131926Z`).

### Releasing

Expand Down
4 changes: 2 additions & 2 deletions version.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ package apify
//
// It follows Semantic Versioning (https://semver.org/). Changes to the public
// interface (other than additive ones) are considered breaking changes.
const CLIENT_VERSION = "0.4.3"
const CLIENT_VERSION = "0.4.5"

// API_SPEC_VERSION is the version of the Apify OpenAPI specification that this
// client was generated and verified against.
//
// It corresponds to the `info.version` field of the Apify OpenAPI document.
const API_SPEC_VERSION = "v2-2026-06-30T091455Z"
const API_SPEC_VERSION = "v2-2026-07-02T131926Z"
Loading