From 5bd7a90864417e7be9483002cfa0e543d265b71d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Mon, 27 Jan 2020 10:09:33 +0100 Subject: [PATCH] Release v1.10 --- CHANGELOG.md | 2 +- VERSION | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cff3065f77..d9229636657 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -155,7 +155,7 @@ assert %{"status" => 200, "body" => %{"key" => "foo"}} = json_payload 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 agaainst a pattern. -## v1.10.0-rc.0 (2020-01-07) +## v1.10.0 (2020-01-27) ### 1. Enhancements diff --git a/VERSION b/VERSION index 13e794a3dc4..ed21137ee19 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.10.0-rc.0 \ No newline at end of file +1.10.0 \ No newline at end of file