From d667445db80339b8c15cc5895df51fac7bdca4f9 Mon Sep 17 00:00:00 2001 From: Mohsen Azimi Date: Thu, 30 Jan 2025 14:56:58 +0700 Subject: [PATCH] release: v0.16.0 --- CHANGELOG.md | 39 +++++++++++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 41 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec77ec1..059e26a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,41 @@ 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.16.0] - 2025-01-30 +[0.16.0]: https://github.com/bodo-run/yek/compare/v0.15.0...v0.16.0 +### Bug Fixes + +- Add explicit target installation to build action + +### Documentation + +- Fix arguments help in README +- Update README.md + +### Features + +- Print version with --version + +### Miscellaneous Tasks + +- Ci + +### Ci + +- Also skip strss in main +- Refactor build action to use explicit inputs +- Remove unused upload_artifacts from build action +- Simplify build action inputs +- Optimize build pipeline +- Consolidate workflows into ci.yml +- Add concurrency control to perf jobs +- Add source-based caching for builds +- Rewrite most of the CI automation +- Use QEMU for ARM binary stress tests +- Do not wait for test to finish in build +- Remove musl arm +- Fix logic on which job to run baased on changes + ## [0.15.0] - 2025-01-29 [0.15.0]: https://github.com/bodo-run/yek/compare/v0.14.0...v0.15.0 ### Bug Fixes @@ -42,6 +77,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Organize ci better to not DRY too much - Organize build into its own action +### Release + +- V0.15.0 + ## [0.14.0] - 2025-01-29 [0.14.0]: https://github.com/bodo-run/yek/compare/v0.13.8...v0.14.0 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index acf1ea1..b13fda5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3607,7 +3607,7 @@ dependencies = [ [[package]] name = "yek" -version = "0.15.0" +version = "0.16.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 7ec8873..3104376 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yek" -version = "0.15.0" +version = "0.16.0" edition = "2021" description = "A tool to serialize a repository into chunks of text files" license = "MIT"