diff --git a/CHANGELOG.md b/CHANGELOG.md index 83ec9b7..ace06fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 0.17.0 - TBD +## 0.17.0 - 2024-04-01 ### Enhancements - Added new record type `CbboMsg`, new rtypes and schema types for `Cbbo`, `Cbbo1s`, @@ -29,7 +29,7 @@ - Made `Dataset`, `Venue`, and `Publisher` non-exhaustive to allow future additions without breaking changes - Renamed publishers from deprecated datasets to their respective sources (`XNAS.NLS` -and `XNYS.TRADES` respectively) + and `XNYS.TRADES` respectively) ### Deprecations - Deprecated dataset values `FINN.NLS` and `FINY.TRADES` diff --git a/Cargo.lock b/Cargo.lock index 44b37da..1ed439d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -271,7 +271,7 @@ dependencies = [ [[package]] name = "databento-dbn" -version = "0.16.0" +version = "0.17.0" dependencies = [ "dbn", "pyo3", @@ -282,7 +282,7 @@ dependencies = [ [[package]] name = "dbn" -version = "0.16.0" +version = "0.17.0" dependencies = [ "async-compression", "csv", @@ -304,7 +304,7 @@ dependencies = [ [[package]] name = "dbn-c" -version = "0.16.0" +version = "0.17.0" dependencies = [ "anyhow", "cbindgen", @@ -314,7 +314,7 @@ dependencies = [ [[package]] name = "dbn-cli" -version = "0.16.0" +version = "0.17.0" dependencies = [ "anyhow", "assert_cmd", @@ -329,7 +329,7 @@ dependencies = [ [[package]] name = "dbn-macros" -version = "0.16.0" +version = "0.17.0" dependencies = [ "csv", "dbn", diff --git a/Cargo.toml b/Cargo.toml index e204365..26fbeb7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ resolver = "2" [workspace.package] authors = ["Databento "] edition = "2021" -version = "0.16.0" +version = "0.17.0" documentation = "https://docs.databento.com" repository = "https://github.com/databento/dbn" license = "Apache-2.0" diff --git a/python/pyproject.toml b/python/pyproject.toml index 3453a02..43f5ae7 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databento-dbn" -version = "0.16.0" +version = "0.17.0" description = "Python bindings for encoding and decoding Databento Binary Encoding (DBN)" authors = ["Databento "] license = "Apache-2.0" @@ -17,7 +17,7 @@ build-backend = "maturin" [project] name = "databento-dbn" -version = "0.16.0" +version = "0.17.0" authors = [ { name = "Databento", email = "support@databento.com" } ] diff --git a/rust/dbn-cli/Cargo.toml b/rust/dbn-cli/Cargo.toml index e99e8f5..7af0474 100644 --- a/rust/dbn-cli/Cargo.toml +++ b/rust/dbn-cli/Cargo.toml @@ -17,7 +17,7 @@ path = "src/main.rs" [dependencies] # Databento common DBN library -dbn = { path = "../dbn", version = "=0.16.0", default-features = false } +dbn = { path = "../dbn", version = "=0.17.0", default-features = false } # Error handling anyhow = "1.0" diff --git a/rust/dbn/Cargo.toml b/rust/dbn/Cargo.toml index 66205a3..cd8090f 100644 --- a/rust/dbn/Cargo.toml +++ b/rust/dbn/Cargo.toml @@ -25,7 +25,7 @@ serde = ["dep:serde", "time/parsing", "time/serde"] trivial_copy = [] [dependencies] -dbn-macros = { version = "=0.16.0", path = "../dbn-macros" } +dbn-macros = { version = "=0.17.0", path = "../dbn-macros" } # async (de)compression async-compression = { version = "0.4.6", features = ["tokio", "zstd"], optional = true }