diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 148e78f8..fd4adb65 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,5 +1,5 @@ { "skim": "0.15.7", "e2e": "0.1.0", - "xtask": "0.1.0" + "xtask": "0.1.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b84a4aea..fe61cbea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## [0.16.0](https://github.com/skim-rs/skim/compare/v0.15.7...v0.16.0) (2025-01-23) + + +### Features + +* add preview callback ([#407](https://github.com/skim-rs/skim/issues/407)) ([226d995](https://github.com/skim-rs/skim/commit/226d9951fa585958e0497e038729c1b6312d36fd)) + + +### Bug Fixes + +* **term:** clamp height option ([#690](https://github.com/skim-rs/skim/issues/690)) ([5152be1](https://github.com/skim-rs/skim/commit/5152be1945a8704062c4788f994d385e904d931f)) + ## [0.15.7](https://github.com/skim-rs/skim/compare/v0.15.6...v0.15.7) (2024-12-27) diff --git a/Cargo.lock b/Cargo.lock index a3d951aa..7b8456b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -849,7 +849,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "skim" -version = "0.15.7" +version = "0.16.0" dependencies = [ "beef", "bitflags 1.3.2", @@ -1218,7 +1218,7 @@ checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904" [[package]] name = "xtask" -version = "0.1.0" +version = "0.1.1" dependencies = [ "clap", "clap_complete", diff --git a/man/man1/sk.1 b/man/man1/sk.1 index c46aed3d..f57471c6 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.7" +.TH sk 1 "sk 0.16.0" .SH NAME sk \- sk \- fuzzy finder in Rust .SH SYNOPSIS @@ -564,4 +564,4 @@ Pre\-select the items read from this file \fB\-f\fR, \fB\-\-filter\fR=\fIFILTER\fR Query for filter mode .SH VERSION -v0.15.7 +v0.16.0 diff --git a/skim/Cargo.toml b/skim/Cargo.toml index 8864c9a0..cb23f42c 100644 --- a/skim/Cargo.toml +++ b/skim/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "skim" -version = "0.15.7" +version = "0.16.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 3d372862..fb23ead6 100644 --- a/xtask/CHANGELOG.md +++ b/xtask/CHANGELOG.md @@ -8,6 +8,8 @@ + + ## [0.1.0](https://github.com/skim-rs/skim/compare/xtask-v0.18.0...xtask-v0.1.0) (2025-01-22) diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 8929803b..7de73993 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtask" -version = "0.1.0" +version = "0.1.1" edition = "2021" [dependencies]