-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
9811d38
commit 6d027c8
Showing
9 changed files
with
36 additions
and
11 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "mrml-cli" | ||
description = "CLI for the Rust implementation of MJML renderer" | ||
keywords = ["cli", "email", "mjml"] | ||
version = "1.5.2" | ||
version = "1.5.3" | ||
authors = ["Jérémie Drouet <[email protected]>"] | ||
license-file = "license.md" | ||
edition = "2018" | ||
|
@@ -15,7 +15,7 @@ path = "src/main.rs" | |
name = "mrml" | ||
|
||
[dependencies] | ||
mrml = { version = "3.1.0", path = "../mrml-core", features = [ | ||
mrml = { version = "3.1.1", path = "../mrml-core", features = [ | ||
"http-loader-ureq", | ||
"local-loader", | ||
] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "mrml" | ||
description = "Rust implementation of MJML renderer" | ||
keywords = ["email", "mjml"] | ||
version = "3.1.0" | ||
version = "3.1.1" | ||
authors = ["Jérémie Drouet <[email protected]>"] | ||
edition = "2018" | ||
license-file = "license.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "mrml-python" | ||
description = "Python wrapping on MRML" | ||
keywords = ["email", "mjml"] | ||
version = "0.1.7" | ||
version = "0.1.8" | ||
authors = ["Jérémie Drouet <[email protected]>"] | ||
edition = "2021" | ||
license-file = "license.md" | ||
|
@@ -16,7 +16,7 @@ name = "mrml" | |
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
mrml = { version = "3.1.0", path = "../mrml-core", features = [ | ||
mrml = { version = "3.1.1", path = "../mrml-core", features = [ | ||
"http-loader-ureq", | ||
"local-loader", | ||
] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "mrml-wasm" | ||
description = "Wasm wrapping on MRML" | ||
keywords = ["email", "mjml"] | ||
version = "1.4.5" | ||
version = "1.4.6" | ||
authors = ["Jérémie Drouet <[email protected]>"] | ||
edition = "2018" | ||
license-file = "license.md" | ||
|
@@ -25,7 +25,7 @@ reqwest-include-loader = ["async", "mrml/http-loader-async-reqwest"] | |
# code size when deploying. | ||
console_error_panic_hook = { version = "0.1.7", optional = true } | ||
|
||
mrml = { version = "3.1.0", path = "../mrml-core", default-features = false, features = [ | ||
mrml = { version = "3.1.1", path = "../mrml-core", default-features = false, features = [ | ||
"parse", | ||
"render", | ||
] } | ||
|