Skip to content

Commit

Permalink
fix(core): SyntaxError also is type & message (#60)
Browse files Browse the repository at this point in the history
* fix: SyntaxError also is type & message

* Bump to 0.3.2
  • Loading branch information
amaury1093 authored Sep 26, 2019
1 parent b04eacd commit 996633b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 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"
version = "0.3.1"
version = "0.3.2"
authors = ["Amaury Martiny <[email protected]>"]
description = "Check if an email address exists without sending any email"
edition = "2018"
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_core"
version = "0.3.1"
version = "0.3.2"
authors = ["Amaury Martiny <[email protected]>"]
description = "Check if an email address exists without sending any email"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion core/src/syntax.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub struct SyntaxDetails {
}

#[derive(Debug, Serialize)]
// #[serde(tag = "type", content = "message")]
#[serde(tag = "type", content = "message")]
pub enum SyntaxError {
#[serde(serialize_with = "ser_with_display")]
SyntaxError(LettreError),
Expand Down
2 changes: 1 addition & 1 deletion serverless/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "check_if_email_exists_serverless"
version = "0.3.1"
version = "0.3.2"
authors = ["Amaury Martiny <[email protected]>"]
description = "Check if an email address exists without sending any email"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion src/cli.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: check_if_email_exists
version: '0.3.1'
version: '0.3.2'
author: Amaury Martiny <[email protected]>
about: Check if an email address exists without sending any email.
args:
Expand Down

0 comments on commit 996633b

Please sign in to comment.