Skip to content

Commit a875109

Browse files
committed
Prepare 1.1.0 release
1 parent f36cc2f commit a875109

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

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

3+
## 1.1.0 (02.07.2018)
4+
5+
### Enhancements
6+
7+
* pretty-printing support through `Jason.Formatter` and `pretty: true` option
8+
in `Jason.encode/2` ([d758e36](https://github.com/michalmuskala/jason/commit/d758e36)).
9+
10+
### Bug fixes
11+
12+
* silence variable warnings for fields with underscores used during deriving
13+
([88dd85c](https://github.com/michalmuskala/jason/commit/88dd85c)).
14+
* **potential incompatibility** don't raise `Protocol.UndefinedError` in non-bang functions
15+
([ad0f57b](https://github.com/michalmuskala/jason/commit/ad0f57b)).
16+
317
## 1.0.1 (02.07.2018)
418

519
### Bug fixes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ in `mix.exs`:
2020

2121
```elixir
2222
def deps do
23-
[{:jason, "~> 1.0"}]
23+
[{:jason, "~> 1.1"}]
2424
end
2525
```
2626

mix.exs

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

4-
@version "1.0.1"
4+
@version "1.1.0"
55

66
def project() do
77
[

0 commit comments

Comments
 (0)