From 45f0c36175337d5ff594d5a5ab01b7a4b4a7ee66 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 1 Dec 2024 01:28:33 +0100 Subject: [PATCH] chore: release master (#637) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .github/release-please/manifest.json | 6 +++--- CHANGELOG.md | 23 +++++++++++++++++++++++ Cargo.lock | 6 +++--- e2e/CHANGELOG.md | 7 +++++++ e2e/Cargo.toml | 2 +- skim/Cargo.toml | 2 +- xtask/CHANGELOG.md | 8 ++++++++ xtask/Cargo.toml | 2 +- 8 files changed, 47 insertions(+), 9 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index a8023d4c..949ea9d1 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,5 +1,5 @@ { - "skim": "0.14.4", - "e2e": "0.14.4", - "xtask": "0.14.4" + "skim": "0.15.0", + "e2e": "0.15.0", + "xtask": "0.15.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b176a30..4725b340 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Change Log +## [0.15.0](https://github.com/skim-rs/skim/compare/v0.14.4...v0.15.0) (2024-12-01) + + +### ⚠ BREAKING CHANGES + +* do not check for expect before printing the argument of accept… ([#625](https://github.com/skim-rs/skim/issues/625)) + +### Features + +* add `--tmux` flag (deprecates sk-tmux, fixes [#596](https://github.com/skim-rs/skim/issues/596)) ([#603](https://github.com/skim-rs/skim/issues/603)) ([a2d8c3f](https://github.com/skim-rs/skim/commit/a2d8c3f6022197727b3907562068053a8326a2a2)) +* add reload action ([#604](https://github.com/skim-rs/skim/issues/604)) ([4b47244](https://github.com/skim-rs/skim/commit/4b47244922c8910930d5c02016b1c5e99409754a)) +* allow more flexibility for use as a library ([#613](https://github.com/skim-rs/skim/issues/613)) ([33ca402](https://github.com/skim-rs/skim/commit/33ca4023c16b20a4ba6f3e1889efddd78ead15d6)) +* do not check for expect before printing the argument of accept… ([#625](https://github.com/skim-rs/skim/issues/625)) ([bcee1f4](https://github.com/skim-rs/skim/commit/bcee1f4c028012a24ef7ebbda1f80c0decb2375e)) +* readd index tiebreak ([#609](https://github.com/skim-rs/skim/issues/609)) ([0befe8d](https://github.com/skim-rs/skim/commit/0befe8d20659ef90b564f59c07a908ab0953dc0a)) +* **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)) + + +### Bug Fixes + +* allow combined multiple args (fixes [#622](https://github.com/skim-rs/skim/issues/622)) ([#623](https://github.com/skim-rs/skim/issues/623)) ([4144879](https://github.com/skim-rs/skim/commit/4144879f00f6a541637112bdb96e23101eb4acda)) +* undo sk-tmux deprecation ([c9f9025](https://github.com/skim-rs/skim/commit/c9f9025da9cf0bae7802f725eebd28ebac324378)) + ## [0.14.4](https://github.com/skim-rs/skim/compare/v0.14.4...v0.14.4) (2024-12-01) diff --git a/Cargo.lock b/Cargo.lock index 0930cf76..05621af5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -418,7 +418,7 @@ dependencies = [ [[package]] name = "e2e" -version = "0.14.4" +version = "0.15.0" dependencies = [ "rand", "skim", @@ -853,7 +853,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "skim" -version = "0.14.4" +version = "0.15.0" dependencies = [ "atty", "beef", @@ -1233,7 +1233,7 @@ checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904" [[package]] name = "xtask" -version = "0.14.4" +version = "0.15.0" dependencies = [ "clap", "clap_complete", diff --git a/e2e/CHANGELOG.md b/e2e/CHANGELOG.md index 64bfef8c..c82cf930 100644 --- a/e2e/CHANGELOG.md +++ b/e2e/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.15.0](https://github.com/skim-rs/skim/compare/v0.14.4...v0.15.0) (2024-12-01) + + +### Features + +* **tui:** add info hidden ([#630](https://github.com/skim-rs/skim/issues/630)) ([a5b8181](https://github.com/skim-rs/skim/commit/a5b81818d6eb8bfe4c2ceeed3b4cc6e22cc95731)) + ## [0.14.4](https://github.com/skim-rs/skim/compare/v0.14.4...v0.14.4) (2024-12-01) diff --git a/e2e/Cargo.toml b/e2e/Cargo.toml index b988f0bc..4a6fb38d 100644 --- a/e2e/Cargo.toml +++ b/e2e/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "e2e" -version = "0.14.4" +version = "0.15.0" edition = "2021" [dependencies] diff --git a/skim/Cargo.toml b/skim/Cargo.toml index 5d1c5221..b118eedc 100644 --- a/skim/Cargo.toml +++ b/skim/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "skim" -version = "0.14.4" +version = "0.15.0" 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 dd293446..28716315 100644 --- a/xtask/CHANGELOG.md +++ b/xtask/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.15.0](https://github.com/skim-rs/skim/compare/v0.14.4...v0.15.0) (2024-12-01) + + +### 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.14.4](https://github.com/skim-rs/skim/compare/v0.14.4...v0.14.4) (2024-12-01) diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index a2481752..7dc811da 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtask" -version = "0.14.4" +version = "0.15.0" edition = "2021" [dependencies]