File tree 1 file changed +35
-0
lines changed
1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 87
87
88
88
# Older versions
89
89
90
+ ## 1.11.x
91
+
92
+ ### 1.11.0
93
+
94
+ #### Fixes
95
+ * The original expression in ` REQUIRE_FALSE( expr ) ` is now reporter properly as ` !( expr ) ` (#1051 )
96
+ * Previously the parentheses were missing and ` x != y ` would be expanded as ` !x != x `
97
+ * ` Approx::Margin ` is now inclusive (#952 )
98
+ * Previously it was meant and documented as inclusive, but the check itself wasn't
99
+ * This means that ` REQUIRE( 0.25f == Approx( 0.0f ).margin( 0.25f ) ) ` passes, instead of fails
100
+ * ` RandomNumberGenerator::result_type ` is now unsigned (#1050 )
101
+
102
+ #### Improvements
103
+ * ` __JETBRAINS_IDE__ ` macro handling is now CLion version specific (#1017 )
104
+ * When CLion 2017.3 or newer is detected, ` __COUNTER__ ` is used instead of
105
+ * TeamCity reporter now explicitly flushes output stream after each report (#1057 )
106
+ * On some platforms, output from redirected streams would show up only after the tests finished running
107
+ * ` ParseAndAddCatchTests ` now can add test files as dependency to CMake configuration
108
+ * This means you do not have to manually rerun CMake configuration step to detect new tests
109
+
110
+ ## 1.10.x
111
+
112
+ ### 1.10.0
113
+
114
+ #### Fixes
115
+ * Evaluation layer has been rewritten (backported from Catch 2)
116
+ * The new layer is much simpler and fixes some issues (#981 )
117
+ * Implemented workaround for VS 2017 raw string literal stringification bug (#995 )
118
+ * Fixed interaction between ` [!shouldfail] ` and ` [!mayfail] ` tags and sections
119
+ * Previously sections with failing assertions would be marked as failed, not failed-but-ok
120
+
121
+ #### Improvements
122
+ * Added [ libidentify] ( https://github.com/janwilmans/LibIdentify ) support
123
+ * Added "wait-for-keypress" option
124
+
90
125
## 1.9.x
91
126
92
127
### 1.9.6
You can’t perform that action at this time.
0 commit comments