Skip to content

Commit 76209b2

Browse files
committed
Added ChangeLog for release v2
1 parent f280afd commit 76209b2

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

ChangeLog

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
v2 2015-04-02
2+
3+
* Improved compilation time performance. 20% drop in compilation time
4+
has been seen in some test programs.
5+
6+
* Improved the compiler's chance to provide good warning messages
7+
when values in expectations don't quite the types used in the
8+
function signature (for example signed/unsigned mismatch.)
9+
10+
* Added support for tracing matching calls. This is an aid when
11+
doing exploratory tests of legacy code. A trace can often
12+
drastically reduce the time required to understand how the legacy
13+
code works.
14+
15+
To use it, create an object of a tracer type, for example:
16+
17+
TEST(atest)
18+
{
19+
trompeloeil::stream_tracer trace(std::cout);
20+
21+
// normal test code
22+
}
23+
24+
v1 2015-01-10
25+
26+
First official release.

0 commit comments

Comments
 (0)