From 31cc62e6b7c7de4d019bfa7653dcc4bece566611 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Wed, 1 Nov 2017 22:25:17 +0100 Subject: [PATCH] Updated release notes with Approx changes --- docs/release-notes.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/release-notes.md b/docs/release-notes.md index 65444980..92659884 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -25,6 +25,11 @@ * `std::pair` and `std::tuple` are no longer stringified by default * This is done to avoid dragging in `` and `` headers in common path * Their stringification can be enabled per-file via new configuration macros +* `Approx` is subtly different and hopefully behaves more as users would expect + * `Approx::scale` defaults to `0.0` + * `Approx::epsilon` no longer applies to the larger of the two compared values, but only to the `Approx`'s value + * `INFINITY == Approx(INFINITY)` returns true + ## Improvements * Reporters and Listeners can be defined in files different from the main file