From 359164e6cab801b57f18e77592c6f02563d3aab9 Mon Sep 17 00:00:00 2001 From: Carter Green Date: Tue, 5 May 2026 14:48:51 -0500 Subject: [PATCH] VER: Release Rust client 0.50.0 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f77c18..79e3ffe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.50.0 - 2026-05-05 + +### Enhancements +- Upgraded DBN version to 0.57.0: + - Added `INDEX` `InstrumentClass` variant + - Added `StatType` variants `INDICATIVE_CLOSE_PRICE` and `VENUE_SPECIFIC_PRICE_1` + ## 0.49.0 - 2026-04-29 ### Enhancements diff --git a/Cargo.toml b/Cargo.toml index a9262c3..29b728e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "databento" authors = ["Databento "] -version = "0.49.0" +version = "0.50.0" edition = "2021" repository = "https://github.com/databento/databento-rs" description = "Official Databento client library" @@ -33,7 +33,7 @@ live = ["tokio/net", "tokio/time"] chrono = ["dep:chrono"] [dependencies] -dbn = { version = "0.56", features = ["async", "serde"] } +dbn = { version = "0.57", 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"] }