From 5b8e8ba78109308349ad7051d473664c6aa53a77 Mon Sep 17 00:00:00 2001 From: Roberto Mesado Date: Wed, 26 Jun 2024 15:54:43 -0700 Subject: [PATCH 1/2] MOD: More link updates --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1720160..efd291e 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ To run this program, set the `DATABENTO_API_KEY` environment variable with an AP ## Documentation -You can find more detailed examples and the full API documentation on the [Databento docs site](https://databento.com/docs/getting-started?historical=rust&live=rust). +You can find more detailed examples and the full API documentation on the [Databento docs site](https://databento.com/docs/quickstart?historical=rust&live=rust). ## License From b1a9dc0995254c77b678b4ee3f5a9ac8e3f8857b Mon Sep 17 00:00:00 2001 From: Carter Green Date: Tue, 9 Jul 2024 15:36:18 -0500 Subject: [PATCH 2/2] VER: Release 0.11.3 --- CHANGELOG.md | 5 +++++ Cargo.toml | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 045fb1c..f18d6de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.11.3 - 2024-07-09 + +#### Enhancements +- Upgraded DBN version to 0.19.0 with new `BBOMsg` record struct + ## 0.11.2 - 2024-06-25 #### Enhancements diff --git a/Cargo.toml b/Cargo.toml index 37a278c..6c3ed9b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "databento" authors = ["Databento "] -version = "0.11.2" +version = "0.11.3" 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.18.2", features = ["async", "serde"] } +dbn = { version = "0.19.0", features = ["async", "serde"] } # Async stream trait futures = { version = "0.3", optional = true } # Used for Live authentication