Skip to content

Commit

Permalink
VER: Release DBN 0.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nmacholl committed Jan 23, 2024
1 parent db37945 commit 5045234
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 0.15.1 - TBD
## 0.15.1 - 2024-01-23

### Bug fixes
- Fixed an import error in the Python type stub file
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "databento-dbn"
authors = ["Databento <[email protected]>"]
version = "0.15.0"
version = "0.15.1"
edition = "2021"
description = "Python library written in Rust for working with Databento Binary Encoding (DBN)"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions rust/dbn-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dbn-cli"
authors = ["Databento <[email protected]>"]
version = "0.15.0"
version = "0.15.1"
edition = "2021"
description = "Command-line utility for converting Databento Binary Encoding (DBN) files to text-based formats"
default-run = "dbn"
Expand All @@ -17,7 +17,7 @@ path = "src/main.rs"

[dependencies]
# Databento common DBN library
dbn = { path = "../dbn", version = "=0.15.0", default-features = false }
dbn = { path = "../dbn", version = "=0.15.1", default-features = false }

# Error handling
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion rust/dbn-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dbn-macros"
authors = ["Databento <[email protected]>"]
version = "0.15.0"
version = "0.15.1"
edition = "2021"
description = "Proc macros for dbn crate"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions rust/dbn/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dbn"
authors = ["Databento <[email protected]>"]
version = "0.15.0"
version = "0.15.1"
edition = "2021"
description = "Library for working with Databento Binary Encoding (DBN)"
license = "Apache-2.0"
Expand All @@ -25,7 +25,7 @@ serde = ["dep:serde", "time/parsing", "time/serde"]
trivial_copy = []

[dependencies]
dbn-macros = { version = "=0.15.0", path = "../dbn-macros" }
dbn-macros = { version = "=0.15.1", path = "../dbn-macros" }

# async (de)compression
async-compression = { version = "0.4.5", features = ["tokio", "zstd"], optional = true }
Expand Down

0 comments on commit 5045234

Please sign in to comment.