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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0] - 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
Expand Down Expand Up @@ -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.2.0...HEAD
[0.2.0]: https://github.com/tbeason/DatabentoAPI.jl/compare/v0.1.2...v0.2.0
[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
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "DatabentoAPI"
uuid = "feb0aed8-3291-460b-9688-521dcb17a4bf"
version = "0.1.2"
version = "0.2.0"
authors = ["Tyler Beason <tbeas12@gmail.com>"]

[deps]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ for details.

## Status

Current version: **0.1.2**. Offline test suite: **1500+ tests**, ~30 s.
Current version: **0.2.0**. 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.

Expand Down
2 changes: 1 addition & 1 deletion src/http.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const USER_AGENT = "DatabentoAPI.jl/0.1.2"
const USER_AGENT = "DatabentoAPI.jl/0.2.0"
const DEFAULT_TIMEOUT = 100
const DEFAULT_CONNECT_TIMEOUT = 30

Expand Down
Loading