From fadb2fdbe56cc3bce5e6f4268130824176b821ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20G=C3=B6tze?= Date: Fri, 12 Jul 2024 12:48:40 +0200 Subject: [PATCH] Update Changelog + Readme for v4.0.0 --- CHANGELOG.md | 19 ++++++++++++++++--- README.md | 2 +- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 142e858..eec3f41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,32 +10,44 @@ I.e. `mjml_nif 0.x` versions use mrml versions `>= 0.1, < 1.0.0`, and `mjml_nif ## [Unreleased] -- Use [mrml] v4.0.1 which fixes a bug when using HEEx annotations and phoenix function components to generate MJML (see [mrml diff v3.1.5..v4.0.1][mrml-v3.1.5-v4.0.1]) + +## [4.0.0] - 2024-07-12 + +### Changed +- Use [mrml] v4.0.1, which fixes a bug when using HEEx annotations and phoenix function components to generate MJML (see [mrml diff v3.1.5..v4.0.1][mrml-v3.1.5-v4.0.1]) - Use rustler v0.33.0 +### Fixed +- Forcing rustler build using application config (see [#151](https://github.com/adoptoposs/mjml_nif/issues/151)) + + ## [3.1.0] - 2024-04-18 +### Changed - Use [mrml] v3.1.5 (see [mrml diff v3.0.4..v3.1.5][mrml-v3.0.4-v3.1.5]) - Use rustler v0.32.1 ## [3.0.3] - 2024-03-09 +### Fixed - Use [mrml] v3.0.4, which fixes applying mj-attributes inside mj-include tags and ensures fonts are rendered once (see https://github.com/jdrouet/mrml/issues/378, https://github.com/jdrouet/mrml/issues/383, [mrml diff v3.0.2..v3.0.4][mrml-v3.0.2-v3.0.4]). ## [3.0.2] - 2024-02-27 +### Fixed - Use [mrml] v3.0.2, which fixes using comments in `` tags. (See https://github.com/jdrouet/mrml/issues/373, [mrml diff v3.0.1..v3.0.2][mrml-v3.0.1-v3.0.2]). ## [3.0.1] - 2024-02-16 +### Fixed - Use [mrml] v3.0.1, which fixes using comments in `` tags. (See https://github.com/jdrouet/mrml/issues/370, [mrml diff v3.0.0..v3.0.1][mrml-v3.0.0-v3.0.1]). ## [3.0.0] - 2023-12-23 -## Changed +### Changed - Use [mrml] v3.0.0, which fixes an issue with rendering not self-closing `` tags. (See https://github.com/jdrouet/mrml/issues/356, [mrml diff v2.1.1..v3.0.0][mrml-v2.1.1-v3.0.0]). ## [2.0.0] - 2023-12-16 @@ -141,7 +153,8 @@ I.e. `mjml_nif 0.x` versions use mrml versions `>= 0.1, < 1.0.0`, and `mjml_nif ## [0.1.0] – 2020-07-19 Initial release -[Unreleased]: https://github.com/adoptoposs/mjml_nif/compare/v3.1.0...HEAD +[Unreleased]: https://github.com/adoptoposs/mjml_nif/compare/v4.0.0...HEAD +[4.0.0]: https://github.com/adoptoposs/mjml_nif/compare/v3.1.0...v4.0.0 [3.1.0]: https://github.com/adoptoposs/mjml_nif/compare/v3.0.3...v3.1.0 [3.0.3]: https://github.com/adoptoposs/mjml_nif/compare/v3.0.2...v3.0.3 [3.0.2]: https://github.com/adoptoposs/mjml_nif/compare/v3.0.1...v3.0.2 diff --git a/README.md b/README.md index aef50b2..3c7e3ea 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ The package can be installed by adding `mjml` to your list of dependencies in `m ```elixir def deps do [ - {:mjml, "~> 3.0"} + {:mjml, "~> 4.0"} ] end ```