Skip to content

Commit d55c9b0

Browse files
committed
release: v1.6.0
1 parent 1536eb9 commit d55c9b0

File tree

5 files changed

+34
-6
lines changed

5 files changed

+34
-6
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,34 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.6.0] - 2026-01-23
9+
10+
### 🚀 Features
11+
12+
- Add `--remote` flag to call remote (`--listen`) instances (#915)
13+
14+
### 🐛 Bug Fixes
15+
16+
- Make no-sort work again
17+
18+
### 🧪 Testing
19+
20+
- Remove insta_ prefixes after finalizing tests migration
21+
22+
## [1.6.0] - 2026-01-23
23+
24+
### 🚀 Features
25+
26+
- Add `--remote` flag to call remote (`--listen`) instances (#915)
27+
28+
### 🐛 Bug Fixes
29+
30+
- Make no-sort work again
31+
32+
### 🧪 Testing
33+
34+
- Remove insta_ prefixes after finalizing tests migration
35+
836
## [1.5.4] - 2026-01-23
937

1038
### 🐛 Bug Fixes

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "skim"
3-
version = "1.5.4"
3+
version = "1.6.0"
44
authors = ["Loric ANDRE", "Zhang Jinzhou <lotabout@gmail.com>"]
55
description = "Fuzzy Finder in rust!"
66
documentation = "https://docs.rs/skim"

man/man1/sk.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.ie \n(.g .ds Aq \(aq
22
.el .ds Aq '
3-
.TH sk 1 "sk 1.5.4"
3+
.TH sk 1 "sk 1.6.0"
44
.ie \n(.g .ds Aq \(aq
55
.el .ds Aq '
66
.SH NAME
@@ -978,4 +978,4 @@ When using `sk \-\-remote`, pipe in action chains (see the KEYBINDS section), fo
978978
.ie \n(.g .ds Aq \(aq
979979
.el .ds Aq '
980980
.SH VERSION
981-
v1.5.4
981+
v1.6.0

src/bin/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,11 @@ fn main() -> Result<()> {
122122
if len == 0 {
123123
break;
124124
}
125-
let actions = parse_action_chain(&action_chain.trim())?;
125+
let actions = parse_action_chain(action_chain.trim())?;
126126
for act in actions {
127127
stream
128128
.as_write()
129-
.write_all(&format!("{}\n", ron::ser::to_string(&act)?).as_bytes())?;
129+
.write_all(format!("{}\n", ron::ser::to_string(&act)?).as_bytes())?;
130130
log::debug!("Sent action {act:?} to listener");
131131
}
132132
}

0 commit comments

Comments
 (0)