From 86d30432cae4bf5f6aad660e8e155cecde122f10 Mon Sep 17 00:00:00 2001 From: Andrew Cantino Date: Mon, 6 Mar 2023 20:43:54 -0800 Subject: [PATCH] Bumping to v0.8.0 --- CHANGELOG.txt | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 2e72f148..144b13ea 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,9 @@ +0.8.0 - Mar 6, 2023 + - Add forward-compatibility check for database schema (thanks @bnprks!) + - Add MCFLY_DISABLE_RUN_COMMAND option to disable command running (thanks @chaserhkj!) + - Add customizable prompt with MCFLY_PROMPT (thanks @vedkothavade!) + - Replace termion with crossterm (big change, thanks @jtschuster!) + - Allow ENV variables to be set to FALSE 0.7.1 - Dec 15, 2022 - Ensure at least MCFLY_HISTFILE is set for history import when HISTFILE is missing 0.7.0 - Dec 10, 2022 diff --git a/Cargo.lock b/Cargo.lock index 01133599..bcbe5655 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -481,7 +481,7 @@ dependencies = [ [[package]] name = "mcfly" -version = "0.7.1" +version = "0.8.0" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index 25430af8..12f323a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mcfly" -version = "0.7.1" +version = "0.8.0" 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."