Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #465

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
12 changes: 6 additions & 6 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.7", features = ["macros"] }
mrml = { version = "4.0.1", path = "../../packages/mrml-core", features = [
mrml = { version = "5.0.0", path = "../../packages/mrml-core", features = [
"async",
"http-loader-async-reqwest",
] }
Expand Down
11 changes: 11 additions & 0 deletions packages/mrml-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.7.0](https://github.com/jdrouet/mrml/compare/mrml-cli-v1.6.1...mrml-cli-v1.7.0) - 2024-12-15

### Added

- improve error handling (#452)
- parsing warnings and improve errors (#451)

### Other

- use package attributes from workspace (#488)

## [1.6.1](https://github.com/jdrouet/mrml/compare/mrml-cli-v1.6.0...mrml-cli-v1.6.1) - 2024-06-30

### 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.6.1"
version = "1.7.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -16,7 +16,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",
] }
Expand Down
32 changes: 32 additions & 0 deletions packages/mrml-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.0.0](https://github.com/jdrouet/mrml/compare/mrml-v4.0.1...mrml-v5.0.0) - 2024-12-15

### Added

- *(mrml-core)* add x to the supported social elements (#469)
- improve error handling (#452)
- parsing warnings and improve errors (#451)

### Fixed

- apply clippy suggestions (#495)
- *(mrml-core)* handle duplicate border in mj-column (#479)
- *(mj-core)* mj-text is an ending tag (#478)
- *(mrml-core)* comments in mrml component should be ignored (#477)

### Other

- *(deps)* bump htmlparser to 0.2.1 (#489)
- use package attributes from workspace (#488)
- change visibility of modules (#487)
- replace xmlparser by htmlparser (#485)
- *(mrml-core)* remove unwraps in code (#482)
- *(deps)* upgrade multiple dependencies (#476)
- *(mrml-core)* create alias for attributes map
- apply format changes
- rename json traits to json prefix
- stop returning impl (#449)
- *(mrml-core)* base all component on the same struct (#448)
- *(mrml-core)* introduce proper errors for size parsing (#447)
- remove to_owned call
- make size, pixel, percent copy (#445)

## [4.0.1](https://github.com/jdrouet/mrml/compare/mrml-v4.0.0...mrml-v4.0.1) - 2024-06-30

### 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 = "4.0.1"
version = "5.0.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions packages/mrml-core/lib/css-compare/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]

## [0.1.4](https://github.com/jdrouet/mrml/compare/css-compare-v0.1.3...css-compare-v0.1.4) - 2024-12-15

### Other

- *(deps)* upgrade multiple dependencies (#476)

## [0.1.3](https://github.com/jdrouet/mrml/compare/css-compare-v0.1.2...css-compare-v0.1.3) - 2024-06-13

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

Expand Down
12 changes: 12 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,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.4](https://github.com/jdrouet/mrml/compare/html-compare-v0.1.3...html-compare-v0.1.4) - 2024-12-15

### Fixed

- apply clippy suggestions (#495)

### Other

- *(deps)* bump htmlparser to 0.2.1 (#489)
- replace xmlparser by htmlparser (#485)
- *(deps)* upgrade multiple dependencies (#476)

## [0.1.3](https://github.com/jdrouet/mrml/compare/html-compare-v0.1.2...html-compare-v0.1.3) - 2024-06-13

### Other
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.3"
version = "0.1.4"
edition = "2021"
repository = "https://github.com/jdrouet/mrml"

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

## [Unreleased]

## [0.1.16](https://github.com/jdrouet/mrml/compare/mrml-python-v0.1.15...mrml-python-v0.1.16) - 2024-12-15

### Added

- parsing warnings and improve errors (#451)

### Fixed

- *(mrml-python)* turn PyOSError into PyIOError

### Other

- use package attributes from workspace (#488)
- *(deps)* upgrade multiple dependencies (#476)

## [0.1.15](https://github.com/jdrouet/mrml/compare/mrml-python-v0.1.14...mrml-python-v0.1.15) - 2024-06-30

### 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.1.15"
version = "0.1.16"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -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",
] }
Expand Down
17 changes: 17 additions & 0 deletions packages/mrml-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.5.0](https://github.com/jdrouet/mrml/compare/mrml-wasm-v1.4.12...mrml-wasm-v1.5.0) - 2024-12-15

### Added

- improve error handling (#452)
- parsing warnings and improve errors (#451)

### Fixed

- *(mrml-wasm)* remove wee_alloc dependency (#472)

### Other

- use package attributes from workspace (#488)
- *(deps)* upgrade multiple dependencies (#476)
- *(mrml-core)* base all component on the same struct (#448)

## [1.4.12](https://github.com/jdrouet/mrml/compare/mrml-wasm-v1.4.11...mrml-wasm-v1.4.12) - 2024-06-30

### 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.4.12"
version = "1.5.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -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",
] }
Expand Down