File tree Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
17
## 1.0.1 (02.07.2018)
4
18
5
19
### Bug fixes
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ in `mix.exs`:
20
20
21
21
``` elixir
22
22
def deps do
23
- [{:jason , " ~> 1.0 " }]
23
+ [{:jason , " ~> 1.1 " }]
24
24
end
25
25
```
26
26
Original file line number Diff line number Diff line change 1
1
defmodule Jason.Mixfile do
2
2
use Mix.Project
3
3
4
- @ version "1.0.1 "
4
+ @ version "1.1.0 "
5
5
6
6
def project ( ) do
7
7
[
You can’t perform that action at this time.
0 commit comments