diff --git a/Versions b/Versions index 0aedd01..89fe076 100644 --- a/Versions +++ b/Versions @@ -2,6 +2,16 @@ CxxTest Releases ---------------- +* Version 4.4 (2014-06-03) + - Fixed compilation error on Windows (MSVC) in XmlFormatter.h (#86) + - Fix to ensure that tearDown() is called (#89) + - Add option run test with a user defined command in scons (#91) + - Use a Python path relative to the cxxtestgen script (#88) + - Add defensive guard in ErrorFormatter.h (#96) + - Fixed bug with "None" appearing in CXXTEST_CPPATH (#99) + - Added CXXTEST_LIBPATH to properly use shared libraries (#100) + - Added guards when XmlFormatter.h data is not initialize (#87) + * Version 4.3 (2013-07-05) - Changes to assess code coverage of the cxxtestgen command - Standardizing C++ file formats (using astyle) diff --git a/admin/announcement b/admin/announcement index 3908151..65b4d03 100644 --- a/admin/announcement +++ b/admin/announcement @@ -1,13 +1,15 @@ -We are pleased to announce the updated release of CxxTest 4.3. CxxTest is a unit testing framework for C++ that is similar in spirit to JUnit, CppUnit, and xUnit. CxxTest is easy to use because it does not require precompiling a CxxTest testing library, it employs no advanced features of C++ (e.g. RTTI) and it supports a very flexible form of test discovery. +We are pleased to announce the updated release of CxxTest 4.4. CxxTest is a unit testing framework for C++ that is similar in spirit to JUnit, CppUnit, and xUnit. CxxTest is easy to use because it does not require precompiling a CxxTest testing library, it employs no advanced features of C++ (e.g. RTTI) and it supports a very flexible form of test discovery. -This release resolves the following issues: +This release includes a variety of bug fixes: - - Changes to assess code coverage of the cxxtestgen command - - Standardizing C++ file formats (using astyle) - - Bug fixes that led to the test runner hanging - - Adding special assertions for floating point values - - Added date to XML output - - Added support for comparison of C strings + - Fixed compilation error on Windows (MSVC) in XmlFormatter.h (#86) + - Fix to ensure that tearDown() is called (#89) + - Add option run test with a user defined command in scons (#91) + - Use a Python path relative to the cxxtestgen script (#88) + - Add defensive guard in ErrorFormatter.h (#96) + - Fixed bug with "None" appearing in CXXTEST_CPPATH (#99) + - Added CXXTEST_LIBPATH to properly use shared libraries (#100) + - Added guards when XmlFormatter.h data is not initialize (#87) See the CxxTest Home Page (http://cxxtest.com) for documentation and download instructions. diff --git a/doc/guide.txt b/doc/guide.txt index 7bb9b43..7eb1e1a 100644 --- a/doc/guide.txt +++ b/doc/guide.txt @@ -16,8 +16,8 @@ http://xprogramming.com/software.html[xUnit]. CxxTest is easy to use because it does not require precompiling a CxxTest testing library, it employs no advanced features of C++ (e.g. RTTI) and it supports a very flexible form of test discovery. This documentation -describes CxxTest 4.3, which is an incremental release that includes -better test discovery features and new test skipping features. +describes CxxTest 4.4, which is an incremental release that includes +a variety of bug fixes and minor enhancements. :numbered: @@ -1211,7 +1211,7 @@ distribution model is very strategic for cxxtest. Status and Future Plans ----------------------- -The CxxTest 4.3 release is an incremental release that was driven +The CxxTest 4.4 release is an incremental release that was driven by a variety of bug fixes and minor enhancements. The CxxTest 4.0 release reflected major changes in the management and focus of CxxTest: @@ -1289,6 +1289,11 @@ developers contributed to the CxxTest 4.x releases: * Lionel Orry * John Siirola * Jon Schlueter +* Andrei Korostelev +* Sebastian Rettenberger +* Piotr Kasprzyk +* Gluttton +* Pawel Tomulik The CxxTest documentation is generated using http://www.methods.co.nz/asciidoc/[AsciiDoc]. diff --git a/python/cxxtest/__release__.py b/python/cxxtest/__release__.py index 2ab8b55..1369c60 100644 --- a/python/cxxtest/__release__.py +++ b/python/cxxtest/__release__.py @@ -9,5 +9,5 @@ """ Release Information for cxxtest """ -__version__ = '4.3' -__date__ = "2013-07-05" +__version__ = '4.4' +__date__ = "2014-06-03" diff --git a/python/python3/cxxtest/__release__.py b/python/python3/cxxtest/__release__.py index 2ab8b55..1369c60 100644 --- a/python/python3/cxxtest/__release__.py +++ b/python/python3/cxxtest/__release__.py @@ -9,5 +9,5 @@ """ Release Information for cxxtest """ -__version__ = '4.3' -__date__ = "2013-07-05" +__version__ = '4.4' +__date__ = "2014-06-03"