Skip to content

Commit 1145dc0

Browse files
committed
Release v1.10.4
1 parent 12f93df commit 1145dc0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,13 +155,13 @@ assert %{"status" => 200, "body" => %{"key" => "foo"}} = json_payload
155155

156156
Now imagine that `json_payload` is a large JSON blob and the `"key"` inside the `"body"` did not have value of `"foo"`. In previous Elixir versions, if the assertion failed, Elixir would print the right side and let you up to your own devices to figure out what went wrong. In Elixir v1.10, we diff the data structure against the pattern so you can see exactly which parts of the data matched the pattern and which ones did not. Note ExUnit already performed diffing when comparing data types, this new version adds diffing when matching data against a pattern.
157157

158-
## v1.10.4 (2020-07-01)
158+
## v1.10.4 (2020-07-04)
159159

160160
### 1. Bug fixes
161161

162162
#### Elixir
163163

164-
* [Kernel] Fix a bug where custom types were printed as regular types
164+
* [Kernel] Fix a bug where custom types were printed as built-in types
165165
* [Kernel] Don't add compile-time dependency on `defdelegate`
166166
* [Kernel] Add line numbers to warnings on deprecated imports
167167
* [Kernel] Report the correct line number when raising inside a macro

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.10.3
1+
1.10.4

0 commit comments

Comments
 (0)