Skip to content

Commit

Permalink
Release v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mischov committed Jul 25, 2019
1 parent 74351bb commit 8bb06ce
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## v0.12.0 (2019-07-25)

### Breaking

* [Extract] `Meeseeks.html/1` now escapes problematic characters when encoding attribute values and text, so its output may be slightly different than before

### Fixes

* [Extract] Always use double quotes and escape `&` and `"` when encoding attribute values with `Meeseeks.html/1`
* [Extract] Escape `<`, `>`, and `&` when encoding text with `Meeseeks.html/1`

## v0.11.2 (2019-07-21)

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Ensure Rust is installed, then add Meeseeks to your `mix.exs`:
```elixir
defp deps do
[
{:meeseeks, "~> 0.11.2"}
{:meeseeks, "~> 0.12.0"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Meeseeks.Mixfile do
use Mix.Project

@version "0.11.2"
@version "0.12.0"

def project do
[
Expand Down

0 comments on commit 8bb06ce

Please sign in to comment.