diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 27ecacf5..cbc6347b 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,5 +1,5 @@ { - "skim": "0.15.4", - "e2e": "0.15.3", - "xtask": "0.15.4" + "skim": "0.15.5", + "e2e": "0.16.0", + "xtask": "0.16.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 283b6804..1c044cb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [0.15.5](https://github.com/skim-rs/skim/compare/v0.15.4...v0.15.5) (2024-12-04) + + +### Bug Fixes + +* fix --tmux quoting ([#643](https://github.com/skim-rs/skim/issues/643)) ([1abf545](https://github.com/skim-rs/skim/commit/1abf545ed953dcb9b26a7926df2df105be662c6f)) + ## [0.15.4](https://github.com/skim-rs/skim/compare/v0.15.3...v0.15.4) (2024-12-01) diff --git a/Cargo.lock b/Cargo.lock index b9cc28aa..a377a71e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -429,7 +429,7 @@ dependencies = [ [[package]] name = "e2e" -version = "0.15.3" +version = "0.16.0" dependencies = [ "rand", "tempfile", @@ -872,7 +872,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "skim" -version = "0.15.4" +version = "0.15.5" dependencies = [ "atty", "beef", @@ -1253,7 +1253,7 @@ checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904" [[package]] name = "xtask" -version = "0.15.4" +version = "0.16.0" dependencies = [ "clap", "clap_complete", diff --git a/e2e/CHANGELOG.md b/e2e/CHANGELOG.md index 95cd4c0f..9e4f3e29 100644 --- a/e2e/CHANGELOG.md +++ b/e2e/CHANGELOG.md @@ -4,6 +4,19 @@ +## [0.16.0](https://github.com/skim-rs/skim/compare/e2e-v0.15.3...e2e-v0.16.0) (2024-12-04) + + +### 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.15.3](https://github.com/skim-rs/skim/compare/v0.15.2...v0.15.3) (2024-12-01) diff --git a/e2e/Cargo.toml b/e2e/Cargo.toml index 3162397f..e9456538 100644 --- a/e2e/Cargo.toml +++ b/e2e/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "e2e" -version = "0.15.3" +version = "0.16.0" edition = "2021" [dependencies] diff --git a/skim/Cargo.toml b/skim/Cargo.toml index a37d1e55..154c72ca 100644 --- a/skim/Cargo.toml +++ b/skim/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "skim" -version = "0.15.4" +version = "0.15.5" 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 d9889338..f3b082d3 100644 --- a/xtask/CHANGELOG.md +++ b/xtask/CHANGELOG.md @@ -8,6 +8,14 @@ +## [0.16.0](https://github.com/skim-rs/skim/compare/xtask-v0.15.4...xtask-v0.16.0) (2024-12-04) + + +### 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.15.0](https://github.com/skim-rs/skim/compare/v0.14.4...v0.15.0) (2024-12-01) diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 8f3484a2..194a9220 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtask" -version = "0.15.4" +version = "0.16.0" edition = "2021" [dependencies]