Skip to content

Commit 1e58a46

Browse files
authored
VER: Release 0.33.0
2 parents 70492d6 + dc5aff9 commit 1e58a46

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## 0.33.0 - 2025-08-19
4+
5+
### Enhancements
6+
- Upgraded DBN version to 0.40.0:
7+
- Added `DbnVersion` new type
8+
9+
10+
### Breaking changes
11+
- Removed `bill_id` field from `BatchJob` struct
12+
- Breaking changes from DBN:
13+
- Marked `ErrorCode` and `SystemCode` non-exhaustive to allow adding future variants
14+
without a breaking change
15+
- Added `EndOfInterval` variant to `SystemCode` to notify when all OHLCV bars and
16+
subsampled BBO records have been published for a time interval
17+
318
## 0.32.0 - 2025-08-12
419

520
### Enhancements

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "databento"
33
authors = ["Databento <[email protected]>"]
4-
version = "0.32.0"
4+
version = "0.33.0"
55
edition = "2021"
66
repository = "https://github.com/databento/databento-rs"
77
description = "Official Databento client library"
@@ -31,7 +31,7 @@ historical = [
3131
live = ["dep:hex", "dep:sha2", "tokio/net"]
3232

3333
[dependencies]
34-
dbn = { version = "0.39.1", features = ["async", "serde"] }
34+
dbn = { version = "0.40.0", features = ["async", "serde"] }
3535

3636
async-compression = { version = "0.4", features = ["tokio", "zstd"], optional = true }
3737
# Async stream trait

src/historical/batch.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -299,8 +299,6 @@ pub struct BatchJob {
299299
pub id: String,
300300
/// The user ID of the user who submitted the job.
301301
pub user_id: Option<String>,
302-
/// The bill ID (for internal use).
303-
pub bill_id: Option<String>,
304302
/// The cost of the job in US dollars. Will be `None` until the job is processed.
305303
pub cost_usd: Option<f64>,
306304
/// The dataset code.
@@ -596,7 +594,6 @@ mod tests {
596594
ResponseTemplate::new(StatusCode::OK.as_u16()).set_body_json(json!({
597595
"id": "123",
598596
"user_id": "test_user",
599-
"bill_id": "345",
600597
"cost_usd": 10.50,
601598
"dataset": "XNAS.ITCH",
602599
"symbols": ["TSLA"],
@@ -655,7 +652,6 @@ mod tests {
655652
ResponseTemplate::new(StatusCode::OK.as_u16()).set_body_json(json!([{
656653
"id": "123",
657654
"user_id": "test_user",
658-
"bill_id": "345",
659655
"cost_usd": 10.50,
660656
"dataset": "XNAS.ITCH",
661657
"symbols": "TSLA",
@@ -685,7 +681,6 @@ mod tests {
685681
{
686682
"id": "XNAS-20250602-5KM3HL5BUW",
687683
"user_id": "AA89XSlBV",
688-
"bill_id": null,
689684
"cost_usd": 0.0,
690685
"dataset": "XNAS.ITCH",
691686
"symbols": "MSFT",

0 commit comments

Comments
 (0)