diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e6d959..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 @@ -9,8 +16,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 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