Skip to content

Commit 8bb06ce

Browse files
committed
Release v0.12.0
1 parent 74351bb commit 8bb06ce

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## v0.12.0 (2019-07-25)
4+
5+
### Breaking
6+
7+
* [Extract] `Meeseeks.html/1` now escapes problematic characters when encoding attribute values and text, so its output may be slightly different than before
8+
9+
### Fixes
10+
11+
* [Extract] Always use double quotes and escape `&` and `"` when encoding attribute values with `Meeseeks.html/1`
12+
* [Extract] Escape `<`, `>`, and `&` when encoding text with `Meeseeks.html/1`
13+
314
## v0.11.2 (2019-07-21)
415

516
### Fixes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Ensure Rust is installed, then add Meeseeks to your `mix.exs`:
102102
```elixir
103103
defp deps do
104104
[
105-
{:meeseeks, "~> 0.11.2"}
105+
{:meeseeks, "~> 0.12.0"}
106106
]
107107
end
108108
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Meeseeks.Mixfile do
22
use Mix.Project
33

4-
@version "0.11.2"
4+
@version "0.12.0"
55

66
def project do
77
[

0 commit comments

Comments
 (0)