diff --git a/CHANGELOG.txt b/CHANGELOG.txt index e02187e4..53fa6b48 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,7 @@ -0.8.2 - Dec 3, 2023 +0.8.3 - Dec 3, 2023 - Add support for exporting command history matching a regex or date range (thanks @TD-Sky!) + - Add Windows and Powershell support (thanks @jtschuster!) + - Add deprecation warning on brew tap. 0.8.1 - Jun 3, 2023 - Fix use of MCFLY_DISABLE_MENU (thanks @barklan!) diff --git a/Cargo.lock b/Cargo.lock index bdfb73bd..f65b9518 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -681,7 +681,7 @@ dependencies = [ [[package]] name = "mcfly" -version = "0.8.2" +version = "0.8.3" dependencies = [ "autopilot", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 74b3eb08..a253722b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mcfly" -version = "0.8.2" +version = "0.8.3" authors = ["Andrew Cantino "] edition = "2021" 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." diff --git a/pkg/brew/mcfly.rb b/pkg/brew/mcfly.rb index 609bbbd1..777c8f47 100644 --- a/pkg/brew/mcfly.rb +++ b/pkg/brew/mcfly.rb @@ -25,20 +25,12 @@ def install def caveats <<~EOS - ONE MORE STEP! + DEPRECATED! mcfly is now in the core homebrew repository and you don't need this tap. + Please run: - Add the following to the end of your ~/.bashrc, ~/.zshrc, or ~/.config/fish/config.fish file. - - Bash: - eval "$(mcfly init bash)" - - Zsh: - eval "$(mcfly init zsh)" - - Fish: - mcfly init fish | source - - You will need to restart your terminal when first installing and on some updates. If you receive a McFly error when running commands, try restarting your terminal. + brew uninstall mcfly + brew untap cantino/mcfly + brew install mcfly EOS end end