version 0.8.1

This commit is contained in:
Jinzhou Zhang 2020-04-01 20:37:34 +08:00
parent fa537ffc1a
commit 0b9beed5fc
5 changed files with 31 additions and 4 deletions

View file

@ -1,5 +1,32 @@
# Change Log
## 0.8.1: 2020-02-23
Feature:
- [#63](https://github.com/lotabout/skim/issues/63) could save to and read
from history for query and command query via `--history` and `--cmd-history`
- [#273](https://github.com/lotabout/skim/issues/273) inline-info now has
spinner
- [#276](https://github.com/lotabout/skim/issues/276) new action:
`if-non-matched` will execute if non of the items matches
- reduce memory footprint
- [#248](https://github.com/lotabout/skim/issues/248) implement `{n}`
placeholder, used to refer to current items's index(zero based).
Bug fixes:
- [PR #279](https://github.com/lotabout/skim/pull/279) exit gracefully on
SIGPIPE error. (e.g. Ctrl-C on pipes)
- [#276](https://github.com/lotabout/skim/issues/276) `execute` panic on zero
results
- [#278](https://github.com/lotabout/skim/issues/278) `NUL` character not
working in preview command
- handle `print0` correctly in filter mode
- Preview's fields now based on original text, not transformed.
- [#295](https://github.com/lotabout/skim/issues/295) skim not exits
sometimes (occasionally happens on Ubuntu)
## 0.8.0: 2020-02-23
**Breaking Changes in API**

2
Cargo.lock generated
View file

@ -539,7 +539,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "skim"
version = "0.8.0"
version = "0.8.1"
dependencies = [
"bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
"chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -1,6 +1,6 @@
[package]
name = "skim"
version = "0.8.0"
version = "0.8.1"
authors = ["Zhang Jinzhou <lotabout@gmail.com>"]
description = "Fuzzy Finder in rust!"
documentation = "https://github.com/lotabout/skim"

View file

@ -378,7 +378,7 @@ First, add skim into your `Cargo.toml`:
```toml
[dependencies]
skim = "0.7.0"
skim = "0.8.1"
```
Then try to run this simple example:

View file

@ -9,7 +9,7 @@
set -u
version="0.8.0"
version="0.8.1"
cd "$(dirname "${BASH_SOURCE[0]}")"
skim_base="$(pwd)"