From 3769aebcf04caac77f8bc2e2a0ba4939c33b86e6 Mon Sep 17 00:00:00 2001 From: Mohsen Azimi Date: Sun, 23 Feb 2025 07:52:30 +0700 Subject: [PATCH] release: v0.21.0 --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 30 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e252fbd..bd62ba6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.21.0] - 2025-02-23 +[0.21.0]: https://github.com/bodo-run/yek/compare/v0.20.0...v0.21.0 +### Bug Fixes + +- Glob pattern handling in e2e tests + +### Documentation + +- Update README with glob pattern and file selection support + +### Features + +- Handle glob patterns in input paths + +### Testing + +- Add comprehensive tests for glob pattern support + +### Ci + +- Run release and publish jobs on main branch +- Only run release and publish on tag pushes +- Trigger release on tag merge to main + ## [0.20.0] - 2025-02-22 [0.20.0]: https://github.com/bodo-run/yek/compare/v0.19.0...v0.20.0 ### Bug Fixes @@ -24,6 +48,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add integration test +### Release + +- V0.20.0 + ## [0.19.0] - 2025-02-19 [0.19.0]: https://github.com/bodo-run/yek/compare/v0.18.0...v0.19.0 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 71666bf..d6025bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4017,7 +4017,7 @@ dependencies = [ [[package]] name = "yek" -version = "0.20.0" +version = "0.21.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index f1f0319..2a72983 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yek" -version = "0.20.0" +version = "0.21.0" edition = "2021" description = "A tool to serialize a repository into chunks of text files" license = "MIT"