Skip to content

Commit 2ac22b6

Browse files
committed
release: v2.0.0
1 parent 015fd28 commit 2ac22b6

File tree

6 files changed

+26
-14
lines changed

6 files changed

+26
-14
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,5 +98,6 @@ jobs:
9898
run: |
9999
cargo +stable build --no-default-features --features cli
100100
- name: Build with frizbee feature
101+
# Do not use +nightly to make sure we use the correct toolchain date
101102
run: |
102-
cargo +nightly build --no-default-features --features nightly-frizbee
103+
cargo build --no-default-features --features nightly-frizbee

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ 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+
## [2.0.0] - 2026-01-31
9+
10+
### 🚀 Features
11+
12+
- [**breaking**] **library** Send & receive items in batches (#938)
13+
This should not affect TUI users other than in improving the app's performance
14+
15+
### ⚙️ Miscellaneous Tasks
16+
17+
- Add valgrind and thread sanitizer test profiles [skip ci]
18+
819
## [1.11.2] - 2026-01-29
920

1021
### 🐛 Bug Fixes

Cargo.lock

Lines changed: 9 additions & 9 deletions
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.11.2"
3+
version = "2.0.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.11.2"
3+
.TH sk 1 "sk 2.0.0"
44
.ie \n(.g .ds Aq \(aq
55
.el .ds Aq '
66
.SH NAME
@@ -997,4 +997,4 @@ When using `sk \-\-remote`, pipe in action chains (see the KEYBINDS section), fo
997997
.ie \n(.g .ds Aq \(aq
998998
.el .ds Aq '
999999
.SH VERSION
1000-
v1.11.2
1000+
v2.0.0

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "nightly"
2+
channel = "nightly-2026-01-16" # https://releases.rs/docs/1.94.0/
33
profile = "default"
44
components = ["rust-analyzer"]

0 commit comments

Comments
 (0)