diff --git a/Cargo.lock b/Cargo.lock index b9eaceb74..916a52873 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -348,7 +348,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "check-if-email-exists" -version = "0.8.18" +version = "0.8.19" dependencies = [ "async-smtp", "async-std", @@ -368,7 +368,7 @@ dependencies = [ [[package]] name = "check-if-email-exists-cli" -version = "0.8.18" +version = "0.8.19" dependencies = [ "check-if-email-exists", "clap", @@ -382,7 +382,7 @@ dependencies = [ [[package]] name = "check-if-email-exists-test-suite" -version = "0.8.18" +version = "0.8.19" dependencies = [ "check-if-email-exists", "serde", diff --git a/Cargo.toml b/Cargo.toml index eff656ece..3d2f46634 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "check-if-email-exists-cli" -version = "0.8.18" +version = "0.8.19" default-run = "check_if_email_exists" edition = "2018" description = "Check if an email address exists without sending any email." diff --git a/Dockerfile b/Dockerfile index 8329037bc..d823a1e19 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM alpine # `ciee` stands for check-if-email-exists WORKDIR /ciee # Fetch latest version -ENV CIEE_VERSION 0.8.18 +ENV CIEE_VERSION 0.8.19 # Install needed libraries RUN apk update && \ diff --git a/README.md b/README.md index 71beb3aa9..afaac1240 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ Head to the [releases page](https://github.com/amaurymartiny/check-if-email-exis ``` > $ check_if_email_exists --help -check_if_email_exists 0.8.18 +check_if_email_exists 0.8.19 Check if an email address exists without sending any email. USAGE: diff --git a/core/Cargo.toml b/core/Cargo.toml index dc8ae7e01..a1990c2af 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "check-if-email-exists" -version = "0.8.18" +version = "0.8.19" authors = ["Amaury Martiny "] categories = ["email"] description = "Check if an email address exists without sending any email" diff --git a/test_suite/Cargo.toml b/test_suite/Cargo.toml index e7ad56bb6..ca3afe5ab 100644 --- a/test_suite/Cargo.toml +++ b/test_suite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "check-if-email-exists-test-suite" -version = "0.8.18" +version = "0.8.19" edition = "2018" publish = false