Skip to content

Commit 1c8da50

Browse files
committed
VER: Release DBN 0.61.0
1 parent 0f201e6 commit 1c8da50

7 files changed

Lines changed: 34 additions & 35 deletions

File tree

CHANGELOG.md

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

3-
## 0.61.0 - TBD
3+
## 0.61.0 - 2026-06-16
44

55
### Enhancements
66
- Added `MatchAlgorithm` variant `Allocation`
7+
- Upgraded `time` version to 0.3.49
8+
- Upgraded `pyo3` to 0.29.0
79

810
## 0.60.0 - 2026-06-09
911

Cargo.lock

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

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ resolver = "2"
1111
[workspace.package]
1212
authors = ["Databento <support@databento.com>"]
1313
edition = "2021"
14-
version = "0.60.0"
14+
version = "0.61.0"
1515
documentation = "https://databento.com/docs"
1616
repository = "https://github.com/databento/dbn"
1717
license = "Apache-2.0"
1818

1919
[workspace.dependencies]
2020
anyhow = "1.0.102"
2121
csv = "1.4"
22-
pyo3 = "0.28.3"
23-
pyo3-build-config = "0.28.3"
22+
pyo3 = "0.29.0"
23+
pyo3-build-config = "0.29.0"
2424
rstest = "0.26.1"
2525
serde = { version = "1.0", features = ["derive"] }
26-
time = "0.3.47"
26+
time = "0.3.49"
2727
zstd = "0.13"

c/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ dbn = { path = "../rust/dbn", features = [] }
1919
libc = "0.2.186"
2020

2121
[build-dependencies]
22-
cbindgen = { version = "0.29.3", default-features = false }
22+
cbindgen = { version = "0.29.4", default-features = false }

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

2121
anyhow.workspace = true
2222
clap = { version = "4.6", 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.60.0", path = "../dbn-macros" }
28+
dbn-macros = { version = "=0.61.0", path = "../dbn-macros" }
2929

3030
async-compression = { version = "0.4.42", features = ["tokio", "zstd"], optional = true }
3131
async-stream = { version = "0.3", optional = true }

0 commit comments

Comments
 (0)