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 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