Skip to content

Commit

Permalink
VER: Release 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
threecgreen committed Oct 22, 2024
1 parent 3f05103 commit 9765908
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
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 <[email protected]>"]
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"

0 comments on commit 9765908

Please sign in to comment.