diff --git a/CHANGELOG.md b/CHANGELOG.md index f2e3362..fa49bdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.9.3 (2019-09-19) + +- Fix compilation on new Rust by updating rusqlite ([#25](https://github.com/phiresky/ripgrep-all/pull/25)) + # 0.9.2 (2019-06-17) - Fix file ending regex ([#13](https://github.com/phiresky/ripgrep-all/issues/13)) diff --git a/Cargo.lock b/Cargo.lock index b2f6b5b..5b020d6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -936,7 +936,7 @@ dependencies = [ [[package]] name = "ripgrep_all" -version = "0.9.3-alpha.0" +version = "0.9.3" dependencies = [ "bincode 1.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "bzip2 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index c1ed70d..b47ca16 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ name = "ripgrep_all" description = "rga: ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc." license = "AGPL-3.0-or-later" readme = "README.md" -version = "0.9.3-alpha.0" +version = "0.9.3" repository = "https://github.com/phiresky/ripgrep_all" authors = ["phiresky "] edition = "2018"