Skip to content

Commit 191addd

Browse files
committed
Tagging CxxTest 4.4
1 parent 4464237 commit 191addd

File tree

5 files changed

+32
-15
lines changed

5 files changed

+32
-15
lines changed

Versions

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
CxxTest Releases
33
----------------
44

5+
* Version 4.4 (2014-06-03)
6+
- Fixed compilation error on Windows (MSVC) in XmlFormatter.h (#86)
7+
- Fix to ensure that tearDown() is called (#89)
8+
- Add option run test with a user defined command in scons (#91)
9+
- Use a Python path relative to the cxxtestgen script (#88)
10+
- Add defensive guard in ErrorFormatter.h (#96)
11+
- Fixed bug with "None" appearing in CXXTEST_CPPATH (#99)
12+
- Added CXXTEST_LIBPATH to properly use shared libraries (#100)
13+
- Added guards when XmlFormatter.h data is not initialize (#87)
14+
515
* Version 4.3 (2013-07-05)
616
- Changes to assess code coverage of the cxxtestgen command
717
- Standardizing C++ file formats (using astyle)

admin/announcement

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1-
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.
1+
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.
22

3-
This release resolves the following issues:
3+
This release includes a variety of bug fixes:
44

5-
- Changes to assess code coverage of the cxxtestgen command
6-
- Standardizing C++ file formats (using astyle)
7-
- Bug fixes that led to the test runner hanging
8-
- Adding special assertions for floating point values
9-
- Added date to XML output
10-
- Added support for comparison of C strings
5+
- Fixed compilation error on Windows (MSVC) in XmlFormatter.h (#86)
6+
- Fix to ensure that tearDown() is called (#89)
7+
- Add option run test with a user defined command in scons (#91)
8+
- Use a Python path relative to the cxxtestgen script (#88)
9+
- Add defensive guard in ErrorFormatter.h (#96)
10+
- Fixed bug with "None" appearing in CXXTEST_CPPATH (#99)
11+
- Added CXXTEST_LIBPATH to properly use shared libraries (#100)
12+
- Added guards when XmlFormatter.h data is not initialize (#87)
1113

1214
See the CxxTest Home Page (http://cxxtest.com) for documentation and download instructions.
1315

doc/guide.txt

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ http://xprogramming.com/software.html[xUnit]. CxxTest is easy to
1616
use because it does not require precompiling a CxxTest testing
1717
library, it employs no advanced features of C++ (e.g. RTTI) and it
1818
supports a very flexible form of test discovery. This documentation
19-
describes CxxTest 4.3, which is an incremental release that includes
20-
better test discovery features and new test skipping features.
19+
describes CxxTest 4.4, which is an incremental release that includes
20+
a variety of bug fixes and minor enhancements.
2121

2222
:numbered:
2323

@@ -1211,7 +1211,7 @@ distribution model is very strategic for cxxtest.
12111211
Status and Future Plans
12121212
-----------------------
12131213
1214-
The CxxTest 4.3 release is an incremental release that was driven
1214+
The CxxTest 4.4 release is an incremental release that was driven
12151215
by a variety of bug fixes and minor enhancements. The CxxTest 4.0
12161216
release reflected major changes in the management and focus of
12171217
CxxTest:
@@ -1289,6 +1289,11 @@ developers contributed to the CxxTest 4.x releases:
12891289
* Lionel Orry
12901290
* John Siirola
12911291
* Jon Schlueter
1292+
* Andrei Korostelev
1293+
* Sebastian Rettenberger
1294+
* Piotr Kasprzyk
1295+
* Gluttton
1296+
* Pawel Tomulik
12921297

12931298
The CxxTest documentation is generated using
12941299
http://www.methods.co.nz/asciidoc/[AsciiDoc].

python/cxxtest/__release__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99

1010
""" Release Information for cxxtest """
1111

12-
__version__ = '4.3'
13-
__date__ = "2013-07-05"
12+
__version__ = '4.4'
13+
__date__ = "2014-06-03"

python/python3/cxxtest/__release__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99

1010
""" Release Information for cxxtest """
1111

12-
__version__ = '4.3'
13-
__date__ = "2013-07-05"
12+
__version__ = '4.4'
13+
__date__ = "2014-06-03"

0 commit comments

Comments
 (0)