Skip to content

Commit

Permalink
VER: Release 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
threecgreen committed Mar 1, 2024
1 parent a4b42de commit fae6628
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 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.16.0 - TBD
## 0.16.0 - 2024-03-01
### Enhancements
- Updated `StatusMsg` and made it public in preparation for releasing a status schema
- Added `StatusAction`, `StatusReason`, `TradingEvent`, and `TriState` enums for use in
Expand Down
10 changes: 5 additions & 5 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resolver = "2"
[workspace.package]
authors = ["Databento <[email protected]>"]
edition = "2021"
version = "0.15.1"
version = "0.16.0"
documentation = "https://docs.databento.com"
repository = "https://github.com/databento/dbn"
license = "Apache-2.0"
4 changes: 2 additions & 2 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "databento-dbn"
version = "0.15.1"
version = "0.16.0"
description = "Python bindings for encoding and decoding Databento Binary Encoding (DBN)"
authors = ["Databento <[email protected]>"]
license = "Apache-2.0"
Expand All @@ -17,7 +17,7 @@ build-backend = "maturin"

[project]
name = "databento-dbn"
version = "0.15.1"
version = "0.16.0"
authors = [
{ name = "Databento", email = "[email protected]" }
]
Expand Down
2 changes: 1 addition & 1 deletion rust/dbn-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ path = "src/main.rs"

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

# Error handling
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion rust/dbn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ serde = ["dep:serde", "time/parsing", "time/serde"]
trivial_copy = []

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

# async (de)compression
async-compression = { version = "0.4.6", features = ["tokio", "zstd"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion scripts/get_version.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env bash

source "$(dirname "$0")/config.sh"
grep -E '^version =' "${PROJECT_ROOT_DIR}/rust/dbn/Cargo.toml" | cut -d'"' -f 2
grep -E '^version =' "${PROJECT_ROOT_DIR}/Cargo.toml" | cut -d'"' -f 2

0 comments on commit fae6628

Please sign in to comment.