summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Korber <p.korber@1aim.com>2019-03-26 16:38:19 +0100
committerPhilipp Korber <p.korber@dac.eu>2019-10-11 16:33:19 +0200
commite34181e7821f490d135e3963a537d04ecefc14cf (patch)
tree7172f5efad07e1ec4fbc4686456a14706082d386
parent9385e2eb4e602e8f8a24512ae99952b90cf82c39 (diff)
cargo(version): bumped minor version number
-rw-r--r--core/Cargo.toml4
-rw-r--r--headers/Cargo.toml2
-rw-r--r--mail/Cargo.toml10
-rw-r--r--smtp/Cargo.toml6
-rw-r--r--template/Cargo.toml6
5 files changed, 14 insertions, 14 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml
index b10d345..375d3ac 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mail-core"
-version = "0.6.1"
+version = "0.6.2"
description = "[mail/core] provides the Mail type for the mail crate (inkl. multipart mime bodies, builder and resource type)"
authors = ["Philipp Korber <p.korber@1aim.com>"]
keywords = ["mail-api", "internal"]
@@ -21,7 +21,7 @@ features = [ "serde-impl", "default" ]
[dependencies]
mail-internals = "0.2.3"
-mail-headers = "0.6.0"
+mail-headers = "0.6.6"
failure = "0.1.2"
futures = "0.1.24"
log = "0.3.8"
diff --git a/headers/Cargo.toml b/headers/Cargo.toml
index 5be9f73..0c50bdb 100644
--- a/headers/Cargo.toml
+++ b/headers/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "mail-headers"
description = "[mail/headers] header parts for the mail crate (inkl. header map and standard header impl)"
-version = "0.6.5"
+version = "0.6.6"
authors = ["Philipp Korber <philippkorber@gmail.com>"]
documentation = "https://docs.rs/mail-headers"
keywords = []
diff --git a/mail/Cargo.toml b/mail/Cargo.toml
index 661d673..8b3a151 100644
--- a/mail/Cargo.toml
+++ b/mail/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mail"
-version = "0.6.9"
+version = "0.6.10"
authors = ["Philipp Korber <p.korber@1aim.com>"]
categories = []
keywords = ["mail", "rfc5322", "mime", "smtp", "template"]
@@ -36,10 +36,10 @@ features = [ "handlebars", "smtp", "serde-impl" ]
[dependencies]
mail-internals = "0.2.3"
-mail-headers = "0.6.4"
-mail-core = "0.6.1"
-mail-template = "0.6.0"
-mail-smtp = { version="0.2.0", optional=true }
+mail-headers = "0.6.6"
+mail-core = "0.6.2"
+mail-template = "0.6.1"
+mail-smtp = { version="0.2.2", optional=true }
[dev-dependencies]
rpassword = "2.0.0"
diff --git a/smtp/Cargo.toml b/smtp/Cargo.toml
index 626288d..15ecf36 100644
--- a/smtp/Cargo.toml
+++ b/smtp/Cargo.toml
@@ -1,7 +1,7 @@
[package]
authors = ["Philipp Korber <p.korber@1aim.com>"]
name = "mail-smtp"
-version = "0.2.1"
+version = "0.2.2"
categories = []
description = "[mail/smtp] combines mail-core with new-tokio-smtp"
documentation = "https://docs.rs/mail-smtp"
@@ -13,8 +13,8 @@ repository = "https://github.com/1aim/mail-smtp"
[dependencies]
futures = "0.1"
failure = "0.1.5"
-mail-core = "0.6.1"
-mail-headers = "0.6.4"
+mail-core = "0.6.2"
+mail-headers = "0.6.6"
mail-internals = "0.2.3"
new-tokio-smtp = "0.8.1"
diff --git a/template/Cargo.toml b/template/Cargo.toml
index 8aba450..b6a7fdf 100644
--- a/template/Cargo.toml
+++ b/template/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mail-template"
-version = "0.6.0"
+version = "0.6.1"
description = "[mail] provides a way to create bind string template engines to produce mails"
authors = ["Philipp Korber <p.korber@1aim.com>"]
keywords = ["mail", "template", "handlebars"]
@@ -18,9 +18,9 @@ handlebars-bindings = ["handlebars"]
features = [ "handlebars-bindings" ]
[dependencies]
-mail-core = { version="0.6.1", features=["serde-impl"] }
+mail-core = { version="0.6.2", features=["serde-impl"] }
mail-internals = "0.2.3"
-mail-headers = { version="0.6.4", features=["serde-impl"] }
+mail-headers = { version="0.6.6", features=["serde-impl"] }
failure = "0.1.1"
futures = "0.1.14"