From 7fa9d6849c6b3764a53232b5610581f87dbc362b Mon Sep 17 00:00:00 2001 From: Sandipsinh Dilipsinh Rathod <62684960+ssddOnTop@users.noreply.github.com> Date: Wed, 4 Jun 2025 14:17:08 -0400 Subject: [PATCH] chore(async-jsonl): release v0.4.0 --- Cargo.lock | 2 +- crates/async_jsonl/CHANGELOG.md | 6 ++++++ crates/async_jsonl/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a28b699..4185513 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -25,7 +25,7 @@ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" [[package]] name = "async-jsonl" -version = "0.3.1" +version = "0.4.0" dependencies = [ "anyhow", "async-trait", diff --git a/crates/async_jsonl/CHANGELOG.md b/crates/async_jsonl/CHANGELOG.md index 5254d6f..49bdb67 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.0](https://github.com/gpmcp/async-jsonl/compare/v0.3.1...v0.4.0) - 2025-06-04 + +### Added + +- add count function to JsonlReader ([#11](https://github.com/gpmcp/async-jsonl/pull/11)) + ## [0.3.1](https://github.com/gpmcp/async-jsonl/compare/v0.3.0...v0.3.1) - 2025-06-03 ### Fixed diff --git a/crates/async_jsonl/Cargo.toml b/crates/async_jsonl/Cargo.toml index 20cb360..ab3ffb2 100644 --- a/crates/async_jsonl/Cargo.toml +++ b/crates/async_jsonl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-jsonl" -version = "0.3.1" +version = "0.4.0" edition = "2021" license = "Apache-2.0" description = "An efficient async Rust library for reading and processing JSON Lines (JSONL) files using Tokio streams."