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
18 changes: 15 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- chore: remove datasets API and related job types
## [0.4.0] - 2026-06-19

### Removed

- **Breaking:** the datasets API and all related types, following their removal
from the Hotdata OpenAPI spec. This drops the `datasets_api` module and the
`client.datasets()` resource handle; every dataset model
(`CreateDatasetRequest`/`CreateDatasetResponse`, `GetDatasetResponse`,
`UpdateDatasetRequest`/`UpdateDatasetResponse`, `ListDatasetsResponse`,
`ListDatasetVersionsResponse`, `RefreshDatasetResponse`, `DatasetSummary`,
`DatasetVersionSummary`, `DatasetSource` and its `*OneOf*` variants,
`InlineDatasetSource`, `SavedQueryDatasetSource`, `SqlQueryDatasetSource`,
`UploadDatasetSource`, `UrlDatasetSource`, `InlineData`, `ColumnTypeSpec`);
and the dataset-related `JobType` variants (`DatasetRefresh`,
`CreateDatasetIndex`).

### Fixed

Expand All @@ -22,7 +35,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
same `RetryPolicy` budget as 429. Response-phase transport errors are left
un-retried so a non-idempotent `POST` can't double-execute (#63).


## [0.3.2] - 2026-06-18

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hotdata"
version = "0.3.2"
version = "0.4.0"
authors = ["developers@hotdata.dev"]
description = "Powerful data platform API for datasets, queries, and analytics."
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/apis/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ impl Default for Configuration {
fn default() -> Self {
Configuration {
base_path: "https://api.hotdata.dev".to_owned(),
user_agent: Some("hotdata-rust/0.3.2".to_owned()),
user_agent: Some("hotdata-rust/0.4.0".to_owned()),
client: reqwest::Client::new(),
basic_auth: None,
oauth_access_token: None,
Expand Down
Loading