Skip to content

Commit 81abfd7

Browse files
authored
VER: Release 0.18.3
2 parents 7eee1ee + 4d6a1be commit 81abfd7

File tree

14 files changed

+62
-32
lines changed

14 files changed

+62
-32
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.18.3 - 2024-07-02
4+
5+
### Bug fixes
6+
- Fixed issue where DBN encoders would permit symbols in the metadata that left no space
7+
for a null terminator
8+
- Updated metadata length calculation to respect `symbol_cstr_len` field rather than
9+
inferring the length from `version`
10+
311
## 0.18.2 - 2024-06-18
412

513
### Enhancements

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ resolver = "2"
1111
[workspace.package]
1212
authors = ["Databento <[email protected]>"]
1313
edition = "2021"
14-
version = "0.18.2"
14+
version = "0.18.3"
1515
documentation = "https://docs.databento.com"
1616
repository = "https://github.com/databento/dbn"
1717
license = "Apache-2.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ DBN is also the default encoding for all Databento APIs, including live data str
1616
This repository contains both libraries and a CLI tool for working with DBN files and streams.
1717
Python bindings for `dbn` are provided in the `databento_dbn` package.
1818

19-
For more details, read our [introduction to DBN](https://databento.com/docs/knowledge-base/new-users/dbn-encoding/getting-started-with-dbn).
19+
For more details, read our [introduction to DBN](https://databento.com/docs/standards-and-conventions/databento-binary-encoding).
2020

2121
## Features
2222

python/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![pypi-version](https://img.shields.io/pypi/v/databento_dbn)](https://pypi.org/project/databento-dbn)
77

88
Python bindings for the `dbn` Rust library, used by the [Databento Python client library](https://github.com/databento/databento-python).
9-
For more information about the encoding, read our [introduction to DBN](https://databento.com/docs/knowledge-base/new-users/dbn-encoding/getting-started-with-dbn).
9+
For more information about the encoding, read our [introduction to DBN](https://databento.com/docs/standards-and-conventions/databento-binary-encoding).
1010

1111
Using this library is for advanced users and is not fully documented or supported.
1212

@@ -19,7 +19,7 @@ pip install -U databento-dbn
1919

2020
## Usage and documentation
2121

22-
See the [documentation](https://databento.com/docs/getting-started?historical=python&live=python) for the Python client library.
22+
See the [documentation](https://databento.com/docs/quickstart?historical=python&live=python) for the Python client library.
2323

2424
## Building
2525

python/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "databento-dbn"
3-
version = "0.18.2"
3+
version = "0.18.3"
44
description = "Python bindings for encoding and decoding Databento Binary Encoding (DBN)"
55
authors = ["Databento <[email protected]>"]
66
license = "Apache-2.0"
@@ -17,7 +17,7 @@ build-backend = "maturin"
1717

1818
[project]
1919
name = "databento-dbn"
20-
version = "0.18.2"
20+
version = "0.18.3"
2121
authors = [
2222
{ name = "Databento", email = "[email protected]" }
2323
]

rust/dbn-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ name = "dbn"
1616
path = "src/main.rs"
1717

1818
[dependencies]
19-
dbn = { path = "../dbn", version = "=0.18.2", default-features = false }
19+
dbn = { path = "../dbn", version = "=0.18.3", default-features = false }
2020

2121
anyhow = { workspace = true }
2222
clap = { version = "4.5", features = ["derive", "wrap_help"] }

rust/dbn-cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This crate provides a CLI tool `dbn` for converting [Databento](https://databent
88
Binary Encoding (DBN) files to text formats, as well as updating legacy DBZ files to
99
DBN.
1010

11-
For more information about DBN, read our [introduction to DBN](https://databento.com/docs/knowledge-base/new-users/dbn-encoding/getting-started-with-dbn).
11+
For more information about DBN, read our [introduction to DBN](https://databento.com/docs/standards-and-conventions/databento-binary-encoding).
1212

1313
## Installation
1414

rust/dbn/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ serde = ["dep:serde", "time/parsing", "time/serde"]
2525
trivial_copy = []
2626

2727
[dependencies]
28-
dbn-macros = { version = "=0.18.2", path = "../dbn-macros" }
28+
dbn-macros = { version = "=0.18.3", path = "../dbn-macros" }
2929

3030
async-compression = { version = "0.4.11", features = ["tokio", "zstd"], optional = true }
3131
csv = { workspace = true }

rust/dbn/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Current Crates.io Version](https://img.shields.io/crates/v/dbn.svg)](https://crates.io/crates/dbn)
77

88
The official crate for working with Databento Binary Encoding (DBN).
9-
For more information about DBN, read our [introduction to DBN](https://databento.com/docs/knowledge-base/new-users/dbn-encoding/getting-started-with-dbn).
9+
For more information about DBN, read our [introduction to DBN](https://databento.com/docs/standards-and-conventions/databento-binary-encoding).
1010

1111
Check out the [databento crate](https://crates.io/crates/databento) for the official Databento Rust client.
1212

0 commit comments

Comments
 (0)