Skip to content
Closed
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.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
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.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
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.1.3"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Bump the breaking release out of the patch series

This release documents a breaking rename from start / end_ to start_dt / end_dt in the new 0.1.3 changelog section, so publishing it as patch version 0.1.3 lets existing Julia users with compat such as "0.1" or ^0.1.2 resolve to a version where their current calls fail. Since the package states it follows SemVer, this should be a new compatible-series version (for example 0.2.0, with the README/user-agent/changelog links aligned) or the breaking API change should not ship in this patch release.

Useful? React with 👍 / 👎.

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.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.

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.1.3"
const DEFAULT_TIMEOUT = 100
const DEFAULT_CONNECT_TIMEOUT = 30

Expand Down
Loading