Skip to content

Commit 2c11061

Browse files
committed
0.2.0 release
1 parent 17989b8 commit 2c11061

File tree

4 files changed

+41
-4
lines changed

4 files changed

+41
-4
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.2.0] - 2021-04-15
11+
12+
### Added
13+
14+
- Ability to render MJML component partials in MJML templates via `render_component`
15+
- Macros for MJML templates
16+
- Custom EEx engine to compile MJML EEx template to HTML

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Alexander Koutmos
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ dependencies in `mix.exs`:
4242
```elixir
4343
def deps do
4444
[
45-
{:mjml_eex, "~> 0.1.0"}
45+
{:mjml_eex, "~> 0.2.0"}
4646
]
4747
end
4848
```
@@ -78,7 +78,7 @@ Checkout my [GitHub Sponsorship page](https://github.com/sponsors/akoutmos) if y
7878

7979
### Basic Usage
8080

81-
Add `{:mjml_eex, "~> 0.1.0"}` to your `mix.exs` file and run `mix deps.get`. After you have that in place, you
81+
Add `{:mjml_eex, "~> 0.2.0"}` to your `mix.exs` file and run `mix deps.get`. After you have that in place, you
8282
can go ahead and create a template module like so:
8383

8484
```elixir

mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule MjmlEEx.MixProject do
44
def project do
55
[
66
app: :mjml_eex,
7-
version: "0.1.0",
7+
version: "0.2.0",
88
elixir: ">= 1.11.0",
99
elixirc_paths: elixirc_paths(Mix.env()),
1010
name: "MJML EEx",
@@ -41,7 +41,7 @@ defmodule MjmlEEx.MixProject do
4141
defp package do
4242
[
4343
name: "mjml_eex",
44-
files: ~w(lib mix.exs README.md),
44+
files: ~w(lib mix.exs README.md LICENSE CHANGELOG.md),
4545
licenses: ["MIT"],
4646
maintainers: ["Alex Koutmos"],
4747
links: %{

0 commit comments

Comments
 (0)