From 74b2ea971d94d80e54762f9561ea204b34de69f0 Mon Sep 17 00:00:00 2001 From: "skim-rs-bot[bot]" <190268553+skim-rs-bot[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 15:13:50 +0100 Subject: [PATCH] chore: release master (#670) * chore: release master * chore: generate completions & manpage --------- Co-authored-by: skim-rs-bot[bot] <190268553+skim-rs-bot[bot]@users.noreply.github.com> Co-authored-by: Skim bot --- .github/release-please/manifest.json | 6 +++--- CHANGELOG.md | 7 +++++++ Cargo.lock | 6 +++--- e2e/CHANGELOG.md | 13 +++++++++++++ e2e/Cargo.toml | 2 +- man/man1/sk.1 | 4 ++-- skim/Cargo.toml | 2 +- xtask/CHANGELOG.md | 8 ++++++++ xtask/Cargo.toml | 2 +- 9 files changed, 39 insertions(+), 11 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 9b60ae40..e9ad1a72 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,5 +1,5 @@ { - "skim": "0.15.6", - "e2e": "0.17.0", - "xtask": "0.17.0" + "skim": "0.15.7", + "e2e": "0.18.0", + "xtask": "0.18.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e3cefe8..b84a4aea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [0.15.7](https://github.com/skim-rs/skim/compare/v0.15.6...v0.15.7) (2024-12-27) + + +### Bug Fixes + +* remove atty ([#671](https://github.com/skim-rs/skim/issues/671)) ([b265179](https://github.com/skim-rs/skim/commit/b265179f200fe4fff50c3d39b7a8b19d2bdeaf6f)) + ## [0.15.6](https://github.com/skim-rs/skim/compare/v0.15.5...v0.15.6) (2024-12-26) diff --git a/Cargo.lock b/Cargo.lock index 3d2430e2..673bf7d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -418,7 +418,7 @@ dependencies = [ [[package]] name = "e2e" -version = "0.17.0" +version = "0.18.0" dependencies = [ "rand", "tempfile", @@ -849,7 +849,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "skim" -version = "0.15.6" +version = "0.15.7" dependencies = [ "beef", "bitflags 1.3.2", @@ -1229,7 +1229,7 @@ checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904" [[package]] name = "xtask" -version = "0.17.0" +version = "0.18.0" dependencies = [ "clap", "clap_complete", diff --git a/e2e/CHANGELOG.md b/e2e/CHANGELOG.md index 22f5049b..387038c7 100644 --- a/e2e/CHANGELOG.md +++ b/e2e/CHANGELOG.md @@ -4,6 +4,19 @@ +## [0.18.0](https://github.com/skim-rs/skim/compare/e2e-v0.17.0...e2e-v0.18.0) (2024-12-27) + + +### Features + +* **tui:** add info hidden ([#630](https://github.com/skim-rs/skim/issues/630)) ([a5b8181](https://github.com/skim-rs/skim/commit/a5b81818d6eb8bfe4c2ceeed3b4cc6e22cc95731)) + + +### Bug Fixes + +* clippy pedantic on main.rs ([04541d5](https://github.com/skim-rs/skim/commit/04541d515b3f46243a7f590a81022ee0a2d1a34e)) +* fix --tmux quoting ([#643](https://github.com/skim-rs/skim/issues/643)) ([1abf545](https://github.com/skim-rs/skim/commit/1abf545ed953dcb9b26a7926df2df105be662c6f)) + ## [0.17.0](https://github.com/skim-rs/skim/compare/e2e-v0.16.0...e2e-v0.17.0) (2024-12-26) diff --git a/e2e/Cargo.toml b/e2e/Cargo.toml index 71ab212f..83369d07 100644 --- a/e2e/Cargo.toml +++ b/e2e/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "e2e" -version = "0.17.0" +version = "0.18.0" edition = "2021" [dependencies] diff --git a/man/man1/sk.1 b/man/man1/sk.1 index 6253be72..131ba8a7 100644 --- a/man/man1/sk.1 +++ b/man/man1/sk.1 @@ -1,6 +1,6 @@ .ie \n(.g .ds Aq \(aq .el .ds Aq ' -.TH sk 1 "sk 0.15.6" +.TH sk 1 "sk 0.15.7" .SH NAME sk \- sk \- fuzzy finder in Rust .SH SYNOPSIS @@ -557,4 +557,4 @@ Print help (see a summary with \*(Aq\-h\*(Aq) \fB\-V\fR, \fB\-\-version\fR Print version .SH VERSION -v0.15.6 +v0.15.7 diff --git a/skim/Cargo.toml b/skim/Cargo.toml index d9b9c163..e0759fa2 100644 --- a/skim/Cargo.toml +++ b/skim/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "skim" -version = "0.15.6" +version = "0.15.7" authors = ["Zhang Jinzhou ", "Loric Andre"] description = "Fuzzy Finder in rust!" documentation = "https://docs.rs/skim" diff --git a/xtask/CHANGELOG.md b/xtask/CHANGELOG.md index bba47085..057a0416 100644 --- a/xtask/CHANGELOG.md +++ b/xtask/CHANGELOG.md @@ -8,6 +8,14 @@ +## [0.18.0](https://github.com/skim-rs/skim/compare/xtask-v0.17.0...xtask-v0.18.0) (2024-12-27) + + +### Features + +* **tui:** add info hidden ([#630](https://github.com/skim-rs/skim/issues/630)) ([a5b8181](https://github.com/skim-rs/skim/commit/a5b81818d6eb8bfe4c2ceeed3b4cc6e22cc95731)) +* use clap & derive for options, manpage & completions ([#586](https://github.com/skim-rs/skim/issues/586)) ([7df8b77](https://github.com/skim-rs/skim/commit/7df8b77739ae5a05e8cd87bff905ee091e5afd7f)) + ## [0.17.0](https://github.com/skim-rs/skim/compare/xtask-v0.16.0...xtask-v0.17.0) (2024-12-26) diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index f1c4fd2e..3c167fa0 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtask" -version = "0.17.0" +version = "0.18.0" edition = "2021" [dependencies]