From f6c00fd8e079b6b1f4177c7304ec5d751e62d1ae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Dec 2024 20:33:41 +0000 Subject: [PATCH] chore: release v0.1.1 --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 4 ++-- Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6306b64..d3a5d34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/bbaldino/data-pipeline/compare/v0.1.0...v0.1.1) - 2024-12-24 + +### Other + +- fix typo in README +- impl filter trait for fnmut +- release + ## [0.1.0](https://github.com/bbaldino/data-pipeline/releases/tag/v0.1.0) - 2024-10-11 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index ea5da06..3113c4c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -64,7 +64,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "data-pipeline-rs" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 6178245..5de6482 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "data-pipeline-rs" -version = "0.1.0" +version = "0.1.1" edition = "2021" description = "Data processing pipelines" license = "Apache-2.0/MIT"