-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7a52a96
commit 0146871
Showing
13 changed files
with
93 additions
and
15 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.6.1" | ||
version = "1.7.0" | ||
authors = ["Jérémie Drouet <[email protected]>"] | ||
license = "MIT" | ||
edition = "2018" | ||
|
@@ -15,7 +15,7 @@ path = "src/main.rs" | |
name = "mrml" | ||
|
||
[dependencies] | ||
mrml = { version = "4.0.1", path = "../mrml-core", features = [ | ||
mrml = { version = "5.0.0", 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 = "4.0.1" | ||
version = "5.0.0" | ||
authors = ["Jérémie Drouet <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
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
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
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.15" | ||
version = "0.1.16" | ||
authors = ["Jérémie Drouet <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
@@ -16,7 +16,7 @@ name = "mrml" | |
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
mrml = { version = "4.0.1", path = "../mrml-core", features = [ | ||
mrml = { version = "5.0.0", 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.12" | ||
version = "1.5.0" | ||
authors = ["Jérémie Drouet <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -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 = "4.0.1", path = "../mrml-core", default-features = false, features = [ | ||
mrml = { version = "5.0.0", path = "../mrml-core", default-features = false, features = [ | ||
"parse", | ||
"render", | ||
] } | ||
|