From e810e4a737f27e9a9f6479f1f4eef1aa6238c4f9 Mon Sep 17 00:00:00 2001 From: Tyler Beason Date: Thu, 4 Jun 2026 11:17:16 -0500 Subject: [PATCH] Release 0.1.3 - Bump version 0.1.2 -> 0.1.3 (Project.toml, README status, USER_AGENT). - CHANGELOG: cut the [0.1.3] - 2026-06-04 section from [Unreleased] (HTTP retries, backpressured foreach_record, start_dt/end_dt rename) and repair the footer compare links (the [Unreleased] link still pointed at v0.1.1 and the [0.1.2] entry was missing). Co-Authored-By: Claude Opus 4.8 (1M context) --- CHANGELOG.md | 6 +++++- Project.toml | 2 +- README.md | 2 +- src/http.jl | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa9c96a..499348c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3] - 2026-06-04 + ### Added - **Automatic HTTP retries on the Historical API.** Transient failures — HTTP `429` (rate limit) and `5xx`, plus connection/timeout errors — are now retried @@ -204,6 +206,8 @@ Initial public release. Registered in the General registry. `ReconnectPolicy`, `JobState`, `SplitDuration`, `Packaging`, `Delivery`, `SymbologyResolution`, `RollRule`, `SlowReaderBehavior`. -[Unreleased]: https://github.com/tbeason/DatabentoAPI.jl/compare/v0.1.1...HEAD +[Unreleased]: https://github.com/tbeason/DatabentoAPI.jl/compare/v0.1.3...HEAD +[0.1.3]: https://github.com/tbeason/DatabentoAPI.jl/compare/v0.1.2...v0.1.3 +[0.1.2]: https://github.com/tbeason/DatabentoAPI.jl/compare/v0.1.1...v0.1.2 [0.1.1]: https://github.com/tbeason/DatabentoAPI.jl/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/tbeason/DatabentoAPI.jl/releases/tag/v0.1.0 diff --git a/Project.toml b/Project.toml index 87a2a17..1636736 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "DatabentoAPI" uuid = "feb0aed8-3291-460b-9688-521dcb17a4bf" -version = "0.1.2" +version = "0.1.3" authors = ["Tyler Beason "] [deps] diff --git a/README.md b/README.md index 8bab739..f542ac9 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ for details. ## Status -Current version: **0.1.2**. Offline test suite: **1500+ tests**, ~30 s. +Current version: **0.1.3**. Offline test suite: **1500+ tests**, ~30 s. Live-network smoke tests are gated behind `DATABENTO_LIVE_TESTS=1`. See [CHANGELOG.md](CHANGELOG.md) for the full release history. diff --git a/src/http.jl b/src/http.jl index f652bb9..e2e50a3 100644 --- a/src/http.jl +++ b/src/http.jl @@ -1,4 +1,4 @@ -const USER_AGENT = "DatabentoAPI.jl/0.1.2" +const USER_AGENT = "DatabentoAPI.jl/0.1.3" const DEFAULT_TIMEOUT = 100 const DEFAULT_CONNECT_TIMEOUT = 30