Skip to content

Commit 446d44c

Browse files
committed
VER: Release 0.48.0
1 parent 98904e7 commit 446d44c

File tree

6 files changed

+30
-26
lines changed

6 files changed

+30
-26
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 0.48.0 - TBD
3+
## 0.48.0 - 2026-01-27
44

55
### Enhancements
66
- Added initial support for splitting DBN files:
@@ -13,6 +13,10 @@
1313
`dbn mbo.dbn --split-by week --output-pattern '{date}.json'` --json
1414
- Added new publisher for Blue Ocean ATS (`OCEA_MEMOIR_OCEA`)
1515

16+
### Bug fixes
17+
- Fixed issue where `AsyncDynReader` instances created from `with_buffer()` would only
18+
decode the first frame of multi-frame Zstandard files
19+
1620
## 0.47.0 - 2026-01-20
1721

1822
### Enhancements

Cargo.lock

Lines changed: 21 additions & 21 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 <support@databento.com>"]
1313
edition = "2021"
14-
version = "0.47.0"
14+
version = "0.48.0"
1515
documentation = "https://databento.com/docs"
1616
repository = "https://github.com/databento/dbn"
1717
license = "Apache-2.0"

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "databento-dbn"
3-
version = "0.47.0"
3+
version = "0.48.0"
44
description = "Python bindings for encoding and decoding Databento Binary Encoding (DBN)"
55
readme = "README.md"
66
requires-python = ">=3.10"

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.47.0", default-features = false }
19+
dbn = { path = "../dbn", version = "=0.48.0", default-features = false }
2020

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

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.47.0", path = "../dbn-macros" }
28+
dbn-macros = { version = "=0.48.0", path = "../dbn-macros" }
2929

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

0 commit comments

Comments
 (0)