Skip to content

Commit

Permalink
chore: Bump to 0.8.9 (#461)
Browse files Browse the repository at this point in the history
  • Loading branch information
amaury1093 authored Jul 4, 2020
1 parent 1e42f0a commit 12ac29f
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 17 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "check-if-email-exists-cli"
version = "0.8.8"
version = "0.8.9"
default-run = "check_if_email_exists"
edition = "2018"
license = "AGPL-3.0"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM alpine
# `ciee` stands for check-if-email-exists
WORKDIR /ciee
# Fetch latest version
ENV CIEE_VERSION 0.8.8
ENV CIEE_VERSION 0.8.9

# Install needed libraries
RUN apk update && \
Expand Down
23 changes: 13 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,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.8
check_if_email_exists 0.8.9
Check if an email address exists without sending any email.
USAGE:
Expand All @@ -105,15 +105,18 @@ FLAGS:
-V, --version Prints version information
OPTIONS:
--from-email <FROM_EMAIL> The email to use in the `MAIL FROM:` SMTP command. [default: user@example.org]
--hello-name <HELLO_NAME> The name to use in the `EHLO:` SMTP command. [default: localhost]
--http-host <HOST> Sets the host IP address on which the HTTP server should bind. Only used when
`--http` flag is on. [default: 127.0.0.1]
--http-port <PORT> Sets the port on which the HTTP server should bind. Only used when `--http` flag is
on. If not set, then it will use $PORT, or default to 3000.
--proxy-host <PROXY_HOST> Use the specified SOCKS5 proxy host to perform email verification.
--proxy-port <PROXY_PORT> Use the specified SOCKS5 proxy port to perform email verification. Only used when
`--proxy-host` flag is set. [default: 1080]
--from-email <FROM_EMAIL> The email to use in the `MAIL FROM:` SMTP command. [default:
user@example.org]
--hello-name <HELLO_NAME> The name to use in the `EHLO:` SMTP command. [default: localhost]
--http-host <HOST> Sets the host IP address on which the HTTP server should bind. Only used when
`--http` flag is on. [default: 127.0.0.1]
--http-port <PORT> Sets the port on which the HTTP server should bind. Only used when `--http`
flag is on. If not set, then it will use $PORT, or default to 3000.
--proxy-host <PROXY_HOST> Use the specified SOCKS5 proxy host to perform email verification.
--proxy-port <PROXY_PORT> Use the specified SOCKS5 proxy port to perform email verification. Only used
when `--proxy-host` flag is set. [default: 1080]
--yahoo-use-api <YAHOO_USE_API> For Yahoo email addresses, use Yahoo's API instead of connecting directly to
their SMTP servers. [default: true]
ARGS:
<TO_EMAIL> The email to check.
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "check-if-email-exists"
version = "0.8.8"
version = "0.8.9"
authors = ["Amaury Martiny <amaury.martiny@protonmail.com>"]
categories = ["email"]
description = "Check if an email address exists without sending any email"
Expand Down
2 changes: 1 addition & 1 deletion test_suite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "check-if-email-exists-test-suite"
version = "0.8.8"
version = "0.8.9"
edition = "2018"
publish = false

Expand Down

0 comments on commit 12ac29f

Please sign in to comment.