Skip to content

Commit

Permalink
chore: release (#417)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Jun 13, 2024
1 parent dc86c37 commit 2d7626c
Show file tree
Hide file tree
Showing 15 changed files with 95 additions and 17 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

## [Unreleased]

## [1.6.0](https://github.com/jdrouet/mrml/compare/mrml-cli-v1.5.8...mrml-cli-v1.6.0) - 2024-06-13

### Added
- *(mrml-cli)* improve error message ([#418](https://github.com/jdrouet/mrml/pull/418))

### Other
- *(mrml-core)* reimplement print with a printer ([#423](https://github.com/jdrouet/mrml/pull/423))

## [1.5.8](https://github.com/jdrouet/mrml/compare/mrml-cli-v1.5.7...mrml-cli-v1.5.8) - 2024-04-20

### 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.5.8"
version = "1.6.0"
authors = ["Jérémie Drouet <jeremie.drouet@gmail.com>"]
license = "MIT"
edition = "2018"
Expand All @@ -15,7 +15,7 @@ path = "src/main.rs"
name = "mrml"

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

## [Unreleased]

## [4.0.0](https://github.com/jdrouet/mrml/compare/mrml-v3.1.5...mrml-v4.0.0) - 2024-06-13

### Added
- *(mrml-core)* allow to have comments at root level ([#414](https://github.com/jdrouet/mrml/pull/414))

### Fixed
- *(mrml-core)* remove unreachable code from doc

### Other
- *(mrml-core)* make MjAttributes children public ([#429](https://github.com/jdrouet/mrml/pull/429))
- *(mrml-core)* remove common macro
- *(deps)* Update itertools requirement from 0.12.1 to 0.13.0 in /packages/mrml-core ([#425](https://github.com/jdrouet/mrml/pull/425))
- *(mrml-core)* remove useless ToString
- *(mrml-core)* avoid calling self.attributes in loops
- *(mrml-core)* use fmt::Write in render buffer
- *(mrml-core)* move MjAccordionElementChild
- *(mrml-core)* remove unused code
- *(mrml-core)* avoid using dyn dispatch
- *(mrml-core)* reimplement print with a printer ([#423](https://github.com/jdrouet/mrml/pull/423))
- *(mrml-core)* only use indexmap
- *(mrml-core)* update spacing implementation
- *(mrml-core)* spacing should only handle pixels ([#422](https://github.com/jdrouet/mrml/pull/422))
- *(mrml-core)* make SocialNetwork use static str
- *(mrml-core)* make extra use &str
- *(mrml-core)* avoid closing when calling attribute
- *(mrml-core)* simplify lifetimes
- *(mrml-core)* move siblings and index to renderer
- *(mrml-core)* move container_width to renderer
- *(mrml-core)* use common renderer
- *(mrml-core)* move buffer and header in cursor
- *(mrml-core)* wrap render options and header in context
- *(mrml-core)* split header to avoir using Cell
- *(mrml-core)* add lifetime to tag
- *(mrml-core)* style are now built with Cow<'static, str>
- *(mrml-core)* remove unused code
- *(mrml-core)* remove extra panic info
- *(mrml-core)* move conditional to buffer
- *(mrml-core)* make RenderBuffer a struct
- *(mrml-core)* render with buffer
- *(mrml-core)* move tag to render prelude
- *(mrml-core)* make default_attribute return static str
- *(mrml-core)* return args as &str
- *(mrml-core)* styles are stored in Set<Cow<'static, str>> ([#420](https://github.com/jdrouet/mrml/pull/420))
- *(deps)* Bump rustls from 1.0.0-alpha.46 to 1.0.0-alpha.55

## [3.1.5](https://github.com/jdrouet/mrml/compare/mrml-v3.1.4...mrml-v3.1.5) - 2024-04-13

### 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 = "3.1.5"
version = "4.0.0"
authors = ["Jérémie Drouet <jeremie.drouet@gmail.com>"]
edition = "2018"
license = "MIT"
Expand Down
5 changes: 5 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,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

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

### Other
- *(deps)* Bump rustls from 1.0.0-alpha.46 to 1.0.0-alpha.55

## [0.1.2](https://github.com/jdrouet/mrml/compare/css-compare-v0.1.1...css-compare-v0.1.2) - 2024-03-21

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

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

## [Unreleased]

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

### Other
- *(mrml-core)* reimplement print with a printer ([#423](https://github.com/jdrouet/mrml/pull/423))

## [0.1.2](https://github.com/jdrouet/mrml/compare/html-compare-v0.1.1...html-compare-v0.1.2) - 2024-04-13

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

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

## [Unreleased]

## [0.1.4](https://github.com/jdrouet/mrml/compare/mrml-json-macros-v0.1.3...mrml-json-macros-v0.1.4) - 2024-06-13

### Other
- *(mrml-core)* remove common macro

## [0.1.3](https://github.com/jdrouet/mrml/compare/mrml-json-macros-v0.1.2...mrml-json-macros-v0.1.3) - 2024-03-21

### Other
Expand Down
2 changes: 1 addition & 1 deletion packages/mrml-core/lib/mrml-json-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "mrml-json-macros"
description = "Macros for the JSON feature of the MRML crate"
keywords = ["email", "mjml"]
version = "0.1.3"
version = "0.1.4"
authors = ["Jérémie Drouet <jeremie.drouet@gmail.com>"]
edition = "2021"
license = "MIT"
Expand Down
5 changes: 5 additions & 0 deletions packages/mrml-python/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.14](https://github.com/jdrouet/mrml/compare/mrml-python-v0.1.13...mrml-python-v0.1.14) - 2024-06-13

### Other
- updated the following local packages: mrml

## [0.1.13](https://github.com/jdrouet/mrml/compare/mrml-python-v0.1.12...mrml-python-v0.1.13) - 2024-04-20

### Added
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.13"
version = "0.1.14"
authors = ["Jérémie Drouet <jeremie.drouet@gmail.com>"]
edition = "2021"
license = "MIT"
Expand All @@ -16,7 +16,7 @@ name = "mrml"
crate-type = ["cdylib"]

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

## [Unreleased]

## [1.4.11](https://github.com/jdrouet/mrml/compare/mrml-wasm-v1.4.10...mrml-wasm-v1.4.11) - 2024-06-13

### Other
- *(deps)* Update itertools requirement from 0.12.1 to 0.13.0 in /packages/mrml-core ([#425](https://github.com/jdrouet/mrml/pull/425))

## [1.4.10](https://github.com/jdrouet/mrml/compare/mrml-wasm-v1.4.9...mrml-wasm-v1.4.10) - 2024-04-13

### 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.10"
version = "1.4.11"
authors = ["Jérémie Drouet <jeremie.drouet@gmail.com>"]
edition = "2018"
license = "MIT"
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 = "3.1.5", path = "../mrml-core", default-features = false, features = [
mrml = { version = "4.0.0", path = "../mrml-core", default-features = false, features = [
"parse",
"render",
] }
Expand Down

0 comments on commit 2d7626c

Please sign in to comment.