Skip to content

Commit

Permalink
version 0.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lotabout committed Jun 23, 2019
1 parent d1ba7f4 commit d382e5d
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Change Log

## 0.6.8: 2019-06-23

Feature:
- New action: `if-query-empty`, `if-query-not-empty`. Execute actions on
certain query conditions.
- New action: `append-and-select` allows you to append current query to the
item pool and select it. It would help to turn skim into a tag manager
where new tags could be added to the candidate list.

Bug fixes:
- Fix #188: crates.io breaks on 0.6.7
- Fix: `run_with` will break if called multiple times from the same process.
- Update nix to 0.14

## 0.6.7: 2019-05-31

Feature:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "skim"
version = "0.6.7"
version = "0.6.8"
authors = ["Zhang Jinzhou <lotabout@gmail.com>"]
description = "Fuzzy Finder in rust!"
documentation = "https://github.com/lotabout/skim"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ First, add skim into your `Cargo.toml`:

```toml
[dependencies]
skim = "0.6.7"
skim = "0.6.8"
```

Then try to run this simple example:
Expand Down
2 changes: 1 addition & 1 deletion install
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

set -u

version="0.6.7"
version="0.6.8"

cd "$(dirname "${BASH_SOURCE[0]}")"
skim_base="$(pwd)"
Expand Down
2 changes: 1 addition & 1 deletion src/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use std::time::{Duration, Instant};
use chrono::Duration as TimerDuration;
use regex::Regex;
use timer::{Guard as TimerGuard, Timer};
use tuikit::prelude::{Event as TermEvent, *};
use tuikit::prelude::*;

use crate::event::{Event, EventArg, EventHandler, EventReceiver, EventSender};
use crate::header::Header;
Expand Down

0 comments on commit d382e5d

Please sign in to comment.