aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorzhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386>2010-02-24 17:21:37 +0000
committerzhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386>2010-02-24 17:21:37 +0000
commit5905ba00fe78e522f7253e837ded3ddb5b946934 (patch)
tree9cf0d4111261e046ac1fb23673a9c2a8563d2613 /CHANGES
parent470df42bad6a78531f0ec51e43a194f3e26c4f4d (diff)
downloadgoogletest-5905ba00fe78e522f7253e837ded3ddb5b946934.tar.gz
googletest-5905ba00fe78e522f7253e837ded3ddb5b946934.tar.bz2
googletest-5905ba00fe78e522f7253e837ded3ddb5b946934.zip
Adds threading support (by Vlad Losev); updates the version number (by Zhanyong Wan); adds release notes for 1.5.0 (by Vlad Losev).
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES24
1 files changed, 24 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index f703ac2e..16fc85d8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,27 @@
+Changes for 1.5.0:
+
+ * Support for use in multi-threaded tests on platforms having pthreads
+ (by virtue of the Google Test thread change)
+ * The new matcher API lets user-defined matchers generate custom
+ explanations more directly and efficiently.
+ * Better expectation failure messages.
+ * NotNull() and IsNull() now work with smart pointers.
+ * Field() and Property() now work when the matcher argument is a pointer
+ passed by reference.
+ * Regular expression matching on all platforms.
+ * Added GCC 4.0 support for Google Mock Doctor.
+ * Added gmock_all_test.cc for compiling most Google Mock tests
+ in a single file.
+ * Significantly cleaned up compiler warnings.
+ * Bug fixes, better test coverage, and implementation clean-ups.
+
+ Potentially breaking changes:
+
+ * Custom matchers defined using MatcherInterface or MakePolymorphicMatcher()
+ need to be updated after upgrading to Google Mock 1.5.0; matchers defined
+ using MATCHER or MATCHER_P* aren't affected.
+ * Dropped support for 'make install'.
+
Changes for 1.4.0 (we skipped 1.2.* and 1.3.* to match the version of
Google Test):