Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VER: Release 0.15.0 #37

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 0.15.0 - TBD

#### Enhancements
- Upgraded DBN version to 0.23.0:
- Added new `None` `Action` variant that will be gradually rolled out
to historical and live `GLBX.MDP3` data
- Added consistent escaping of non-printable and non-ASCII values when text encoding
`c_char` fields
- Implemented `Default` for `Action` and `Side`
- Implemented missing `Serialize` for (with `serde` feature enabled) for `Venue`,
`Dataset`, `Publisher`, `Compression`, `SType`, `Schema`, and `Encoding`

## 0.14.1 - 2024-10-08

#### Enhancements
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "databento"
authors = ["Databento <support@databento.com>"]
version = "0.14.1"
version = "0.15.0"
edition = "2021"
repository = "https://github.com/databento/databento-rs"
description = "Official Databento client library"
Expand All @@ -23,7 +23,7 @@ historical = ["dep:futures", "dep:reqwest", "dep:serde", "dep:tokio-util", "dep:
live = ["dep:hex", "dep:sha2", "tokio/net"]

[dependencies]
dbn = { version = "0.22.1", features = ["async", "serde"] }
dbn = { version = "0.23.0", features = ["async", "serde"] }
# Async stream trait
futures = { version = "0.3", optional = true }
# Used for Live authentication
Expand All @@ -42,9 +42,9 @@ tracing = "0.1"
typed-builder = "0.20"

[dev-dependencies]
anyhow = "1.0.89"
clap = { version = "4.5.18", features = ["derive"] }
tempfile = "3.12.0"
tokio = { version = "1.40", features = ["full"] }
anyhow = "1.0.91"
clap = { version = "4.5.20", features = ["derive"] }
tempfile = "3.13.0"
tokio = { version = "1.41", features = ["full"] }
tracing-subscriber = "0.3.18"
wiremock = "0.6"