From 58748d80c707cd8fd8609cfc48f13919267ecce8 Mon Sep 17 00:00:00 2001 From: Carter Green Date: Tue, 30 Jul 2024 13:58:49 -0500 Subject: [PATCH] VER: Release 0.12.0 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9a4264..595dca5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.12.0 - 2024-07-30 + +#### Breaking changes +- Upgraded DBN version to 0.20.0: + - Renamed `SType::Nasdaq` variant to `SType::NasdaqSymbol` + - Renamed `SType::Cms` variant to `SType::CmsSymbol` + ## 0.11.4 - 2024-07-16 #### Enhancements diff --git a/Cargo.toml b/Cargo.toml index da22cfd..b6f6af5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "databento" authors = ["Databento "] -version = "0.11.4" +version = "0.12.0" edition = "2021" repository = "https://github.com/databento/databento-rs" description = "Official Databento client library" @@ -24,7 +24,7 @@ live = ["dep:hex", "dep:sha2", "tokio/net"] [dependencies] # binary encoding -dbn = { version = "0.19.1", features = ["async", "serde"] } +dbn = { version = "0.20.0", features = ["async", "serde"] } # Async stream trait futures = { version = "0.3", optional = true } # Used for Live authentication