diff --git a/Cargo.lock b/Cargo.lock index 8b96eb1..e865d2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -46,7 +46,7 @@ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" [[package]] name = "async-jsonl" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "async-trait", diff --git a/crates/async_jsonl/CHANGELOG.md b/crates/async_jsonl/CHANGELOG.md index 49bdb67..2658540 100644 --- a/crates/async_jsonl/CHANGELOG.md +++ b/crates/async_jsonl/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.1](https://github.com/gpmcp/async-jsonl/compare/async-jsonl-v0.4.0...async-jsonl-v0.4.1) - 2025-06-05 + +### Fixed + +- update tokio dependencies + ## [0.4.0](https://github.com/gpmcp/async-jsonl/compare/v0.3.1...v0.4.0) - 2025-06-04 ### Added diff --git a/crates/async_jsonl/Cargo.toml b/crates/async_jsonl/Cargo.toml index 29e2bfc..a40d619 100644 --- a/crates/async_jsonl/Cargo.toml +++ b/crates/async_jsonl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-jsonl" -version = "0.4.0" +version = "0.4.1" edition = "2021" license = "Apache-2.0" description = "An efficient async Rust library for reading and processing JSON Lines (JSONL) files using Tokio streams."