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: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## 0.37.0 - 2025-12-09

### Enhancements
- Added optional `chrono` feature for converting `chrono` date and datetime types to
`DateRange`, `DateTimeRange`, and `Subscription::start` (credit: @wtn)
- Upgraded DBN version to 0.45.0:
- Added new venue, dataset, and publisher for Cboe Futures Exchange (`XCBF.PITCH`)


### Breaking changes
- Changed the default to `true` for the `map_symbols` parameter in
`SubmitJobParams::builder()` for JSON and CSV encodings
- Moved `DateTimeLike` trait to top level

### Bug fixes
- Fixed checksum verification for resumed downloads in `batch().download()`. Previously,
it would erroneously fail

## 0.36.0 - 2025-11-19

### Enhancements
Expand Down
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "databento"
authors = ["Databento <[email protected]>"]
version = "0.36.0"
version = "0.37.0"
edition = "2021"
repository = "https://github.com/databento/databento-rs"
description = "Official Databento client library"
Expand Down Expand Up @@ -30,11 +30,13 @@ historical = [
"tokio/fs"
]
live = ["tokio/net"]
chrono = ["dep:chrono"]

[dependencies]
dbn = { version = "0.44.0", features = ["async", "serde"] }
dbn = { version = "0.45.0", features = ["async", "serde"] }

async-compression = { version = "0.4", features = ["tokio", "zstd"], optional = true }
chrono = { version = ">=0.4.34", optional = true, default-features = false, features = ["alloc"] }
# Async stream trait
futures = { version = "0.3", optional = true }
# Used for Live authentication and historical checksums
Expand All @@ -55,6 +57,7 @@ zstd = { version = "0.13", optional = true }

[dev-dependencies]
anyhow = "1.0.100"
chrono = { version = ">=0.4.34", default-features = false, features = ["alloc"] }
async-compression = { version = "0.4", features = ["tokio", "zstd"] }
clap = { version = "4.5.51", features = ["derive"] }
rstest = "0.26.1"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ cargo add databento

- `historical`: enables the historical client for data older than 24 hours
- `live`: enables the live client for real-time and intraday historical data
- `chrono`: enables passing `chrono` types as datetime parameters

By default both features are enabled and the historical client uses OpenSSL for TLS.
To use `rustls`, disable default features for both the databento crate and [reqwest](https://github.com/seanmonstar/reqwest).
Expand Down
Loading