From f044456c584a8b84f3ed0d62718d3ac53e18dabc Mon Sep 17 00:00:00 2001 From: Carter Green Date: Tue, 1 Oct 2024 16:48:14 -0500 Subject: [PATCH 1/2] FIX: Small client fix --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e6d959..2db97f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,8 +9,6 @@ - `Symbols::to_chunked_api_string()` - `live::protocol` module containing implementations of the raw API messages - Changed from `log` crate to `tracing` for better diagnostics -- Upgraded DBN version to 0.22.0 for combined `_reserved3` and - `_reserved4` fields in `CbboMsg` ## 0.13.0 - 2024-09-25 From 3f05103be4571be20f5d8d3237ddb66c1d81edc0 Mon Sep 17 00:00:00 2001 From: Carter Green Date: Tue, 8 Oct 2024 13:35:53 -0500 Subject: [PATCH 2/2] VER: Release 0.14.1 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2db97f6..9ae6ad1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.14.1 - 2024-10-08 + +#### Enhancements +- Upgraded DBN version to 0.22.1: + - Fixed buffer overrun + - Combined `_reserved3` and `reserved4` fields in `CbboMsg` + ## 0.14.0 - 2024-10-01 #### Enhancements diff --git a/Cargo.toml b/Cargo.toml index db887d2..af94cc5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "databento" authors = ["Databento "] -version = "0.14.0" +version = "0.14.1" edition = "2021" repository = "https://github.com/databento/databento-rs" description = "Official Databento client library" @@ -23,7 +23,7 @@ historical = ["dep:futures", "dep:reqwest", "dep:serde", "dep:tokio-util", "dep: live = ["dep:hex", "dep:sha2", "tokio/net"] [dependencies] -dbn = { version = "0.21.0", features = ["async", "serde"] } +dbn = { version = "0.22.1", features = ["async", "serde"] } # Async stream trait futures = { version = "0.3", optional = true } # Used for Live authentication