Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 examples/axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
axum = { version = "0.8", features = ["macros"] }
mrml = { version = "6.0.1", path = "../../packages/mrml-core", features = [
mrml = { version = "7.0.0", path = "../../packages/mrml-core", features = [
"async",
"http-loader-async-reqwest",
] }
Expand Down
6 changes: 6 additions & 0 deletions packages/mrml-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.7.4](https://github.com/jdrouet/mrml/compare/mrml-cli-v1.7.3...mrml-cli-v1.7.4) - 2026-09-13

### Other

- *(mrml-cli)* read input files with fs::read_to_string ([#680](https://github.com/jdrouet/mrml/pull/680))

## [1.7.3](https://github.com/jdrouet/mrml/compare/mrml-cli-v1.7.2...mrml-cli-v1.7.3) - 2026-04-25

### Other
Expand Down
4 changes: 2 additions & 2 deletions packages/mrml-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "mrml-cli"
description = "CLI for the Rust implementation of MJML renderer"
keywords = ["cli", "email", "mjml"]
version = "1.7.3"
version = "1.7.4"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -16,7 +16,7 @@ path = "src/main.rs"
name = "mrml"

[dependencies]
mrml = { version = "6.0.1", path = "../mrml-core", features = [
mrml = { version = "7.0.0", path = "../mrml-core", features = [
"http-loader-ureq",
"local-loader",
] }
Expand Down
23 changes: 23 additions & 0 deletions packages/mrml-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [7.0.0](https://github.com/jdrouet/mrml/compare/mrml-v6.0.1...mrml-v7.0.0) - 2026-09-13

### Fixed

- *(mrml-core)* make local loader containment hold ([#695](https://github.com/jdrouet/mrml/pull/695))
- *(mrml-core)* forward layout context through mj-include ([#696](https://github.com/jdrouet/mrml/pull/696))
- also consider carriage return when skipping empty tokens ([#656](https://github.com/jdrouet/mrml/pull/656))
- *(mrml-core)* return typed error for unsupported mj-include type instead of panicking ([#647](https://github.com/jdrouet/mrml/pull/647))
- *(mrml-core)* accept unitless zero in Pixel::try_from ([#644](https://github.com/jdrouet/mrml/pull/644))
- *(mrml-core)* warn on duplicate attributes and keep first value ([#638](https://github.com/jdrouet/mrml/pull/638))

### Other

- fold css-compare into html-compare ([#691](https://github.com/jdrouet/mrml/pull/691))
- *(mrml-core)* scope the dead_code allow to the render feature ([#690](https://github.com/jdrouet/mrml/pull/690))
- *(mrml-core)* merge the dense and pretty printers ([#682](https://github.com/jdrouet/mrml/pull/682))
- *(mrml-core)* replace the Map and Set newtypes with type aliases ([#683](https://github.com/jdrouet/mrml/pull/683))
- *(mrml-core)* simplify the spacing and sort helpers ([#681](https://github.com/jdrouet/mrml/pull/681))
- *(deps)* remove unused itertools dependency ([#677](https://github.com/jdrouet/mrml/pull/677))
- rewrap comments for current nightly rustfmt ([#673](https://github.com/jdrouet/mrml/pull/673))
- *(deps)* Bump mjml from 4.18.0 to 5.0.0 in /scripts ([#653](https://github.com/jdrouet/mrml/pull/653))
- add zed-mjml to the list of what is using it ([#649](https://github.com/jdrouet/mrml/pull/649))

## [6.0.1](https://github.com/jdrouet/mrml/compare/mrml-v6.0.0...mrml-v6.0.1) - 2026-04-25

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion packages/mrml-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "mrml"
description = "Rust implementation of MJML renderer"
keywords = ["email", "mjml"]
version = "6.0.1"
version = "7.0.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions packages/mrml-core/lib/html-compare/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.6](https://github.com/jdrouet/mrml/compare/html-compare-v0.1.5...html-compare-v0.1.6) - 2026-09-13

### Other

- fold css-compare into html-compare ([#691](https://github.com/jdrouet/mrml/pull/691))
- rewrap comments for current nightly rustfmt ([#673](https://github.com/jdrouet/mrml/pull/673))

## [0.1.5](https://github.com/jdrouet/mrml/compare/html-compare-v0.1.4...html-compare-v0.1.5) - 2025-11-16

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion packages/mrml-core/lib/html-compare/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "html-compare"
description = "A simple library to compare html files"
license = "MIT"
version = "0.1.5"
version = "0.1.6"
edition = "2021"
repository = "https://github.com/jdrouet/mrml"

Expand Down
7 changes: 7 additions & 0 deletions packages/mrml-python/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.5](https://github.com/jdrouet/mrml/compare/mrml-python-v0.2.4...mrml-python-v0.2.5) - 2026-09-13

### Other

- *(mrml-python)* inline the single-caller warning converter ([#689](https://github.com/jdrouet/mrml/pull/689))
- *(deps)* Bump pyo3 from 0.28.3 to 0.29.0 ([#648](https://github.com/jdrouet/mrml/pull/648))

## [0.2.4](https://github.com/jdrouet/mrml/compare/mrml-python-v0.2.3...mrml-python-v0.2.4) - 2026-04-25

### Other
Expand Down
4 changes: 2 additions & 2 deletions packages/mrml-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "mrml-python"
description = "Python wrapping on MRML"
keywords = ["email", "mjml"]
version = "0.2.4"
version = "0.2.5"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -16,7 +16,7 @@ name = "mrml"
crate-type = ["cdylib"]

[dependencies]
mrml = { version = "6.0.1", path = "../mrml-core", features = [
mrml = { version = "7.0.0", path = "../mrml-core", features = [
"http-loader-ureq",
"local-loader",
"css-inline",
Expand Down
12 changes: 12 additions & 0 deletions packages/mrml-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.6.2](https://github.com/jdrouet/mrml/compare/mrml-wasm-v1.6.1...mrml-wasm-v1.6.2) - 2026-09-13

### Fixed

- *(mrml-core)* return typed error for unsupported mj-include type instead of panicking ([#647](https://github.com/jdrouet/mrml/pull/647))
- *(mrml-core)* warn on duplicate attributes and keep first value ([#638](https://github.com/jdrouet/mrml/pull/638))

### Other

- *(mrml-wasm)* remove orphan utils module and ignored release profile ([#678](https://github.com/jdrouet/mrml/pull/678))
- *(deps-dev)* Bump mocha from 11.8.0 to 12.0.0 in /packages/mrml-wasm/examples/node ([#669](https://github.com/jdrouet/mrml/pull/669))

## [1.6.1](https://github.com/jdrouet/mrml/compare/mrml-wasm-v1.6.0...mrml-wasm-v1.6.1) - 2026-04-25

### Other
Expand Down
4 changes: 2 additions & 2 deletions packages/mrml-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "mrml-wasm"
description = "Wasm wrapping on MRML"
keywords = ["email", "mjml"]
version = "1.6.1"
version = "1.6.2"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -19,7 +19,7 @@ async = ["dep:wasm-bindgen-futures", "mrml/async"]
reqwest-include-loader = ["async", "mrml/http-loader-async-reqwest"]

[dependencies]
mrml = { version = "6.0.1", path = "../mrml-core", default-features = false, features = [
mrml = { version = "7.0.0", path = "../mrml-core", default-features = false, features = [
"parse",
"render",
] }
Expand Down