diff --git a/CHANGELOG.md b/CHANGELOG.md index e692f27..f7ca3d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ All notable changes to the Rust Apify API client are documented here. The format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and the project adheres to [Semantic Versioning](https://semver.org/). +## [0.10.1] - 2026-09-11 + +### Changed +- Bumped `API_SPEC_VERSION` to `v2-2026-09-10T091137Z` (spec now documents pagination + response headers on all offset-paginated list endpoints and the `offset`/`limit`/`desc` + query parameters on the webhook-dispatches-by-webhook endpoint; the client already + implemented both, so no code changes were needed). +- Bumped crate version to `0.10.1`. + ## [0.10.0] - 2026-09-04 ### Added diff --git a/Cargo.toml b/Cargo.toml index 1cc6e5d..0d43bd0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "apify-client" -version = "0.10.0" +version = "0.10.1" authors = ["Apify Technologies "] description = "An official, but experimental, AI-generated and AI-maintained Rust client for the Apify API (https://apify.com)." license = "Apache-2.0" diff --git a/src/version.rs b/src/version.rs index 33aef14..87c1a75 100644 --- a/src/version.rs +++ b/src/version.rs @@ -10,4 +10,4 @@ pub const CLIENT_VERSION: &str = env!("CARGO_PKG_VERSION"); /// and verified against. /// /// This corresponds to the `info.version` field of the Apify OpenAPI document. -pub const API_SPEC_VERSION: &str = "v2-2026-09-02T154542Z"; +pub const API_SPEC_VERSION: &str = "v2-2026-09-10T091137Z";