Bump version to 0.1.2 (#32)

This commit is contained in:
Dave Gallant
2020-10-04 17:28:28 -04:00
committed by GitHub
parent 09d48c4b03
commit 379d4d6d89
3 changed files with 7 additions and 7 deletions

10
Cargo.lock generated
View File

@@ -785,18 +785,18 @@ checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
[[package]]
name = "pin-project"
version = "0.4.25"
version = "0.4.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b9e280448854bd91559252582173b3bd1f8e094a0e644791c0628ca9b1f144f"
checksum = "13fbdfd6bdee3dc9be46452f86af4a4072975899cf8592466668620bebfbcc17"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "0.4.25"
version = "0.4.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8c8b352676bc6a4c3d71970560b913cea444a7a921cc2e2d920225e4b91edaa"
checksum = "c82fb1329f632c3552cf352d14427d57a511b1cf41db93b3a7d77906a82dcc8e"
dependencies = [
"proc-macro2",
"quote",
@@ -1036,7 +1036,7 @@ dependencies = [
[[package]]
name = "rfd-notify"
version = "0.1.0"
version = "0.1.2"
dependencies = [
"clap",
"log",

View File

@@ -1,6 +1,6 @@
[package]
name = "rfd-notify"
version = "0.1.0"
version = "0.1.2"
authors = ["Dave Gallant <davegallant@gmail.com>"]
edition = "2018"

View File

@@ -17,7 +17,7 @@ fn main() {
debug!("Starting rfd-notify");
let app = App::new("rfd-notify")
.version("0.1.1")
.version("0.1.2")
.about("Send emails based on regular expressions")
.args(&[
Arg::with_name("config")