Skip to content

Commit

Permalink
Bumping to v0.5.12
Browse files Browse the repository at this point in the history
  • Loading branch information
cantino committed Jan 12, 2022
1 parent eb2f4bf commit 56101f8
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/mean_bean_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
steps:
- uses: actions/checkout@v1
with:
depth: 50
fetch-depth: 50
- uses: XAMPPRocky/get-github-release@v1
id: cross
with:
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
depth: 50
fetch-depth: 50

- name: Download Cross
uses: actions/download-artifact@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mean_bean_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v1
with:
depth: 50
fetch-depth: 50
- uses: XAMPPRocky/get-github-release@v1
id: cross
with:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
0.5.12 - Jan 12, 2022
- Automatically detect if Zsh extended history is used (thanks @vmax!)
0.5.11 - Dec 12, 2021
- Avoid using builtins to fix WSL bug
0.5.10 - Nov 6, 2021
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 = "mcfly"
version = "0.5.11"
version = "0.5.12"
authors = ["Andrew Cantino <[email protected]>"]
edition = "2018"
description = "McFly replaces your default ctrl-r shell history search with an intelligent search engine that takes into account your working directory and the context of recently executed commands. McFly's suggestions are prioritized in real time with a small neural network."
Expand Down
4 changes: 2 additions & 2 deletions src/shell_history.rs
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,8 @@ pub fn append_history_entry(command: &HistoryCommand, path: &Path, debug: bool)
.open(path)
.unwrap_or_else(|err| {
panic!(
"McFly error: please make sure HISTFILE/MCFLY_HISTFILE exists ({})",
err
"McFly error: please make sure HISTFILE/MCFLY_HISTFILE ({:?}) exists ({})",
path, err
)
});

Expand Down

0 comments on commit 56101f8

Please sign in to comment.