diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2014-04-11 15:22:07 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2014-04-11 15:43:46 +0200 |
commit | 8ff6c2f13c3945f2409fd54dd05b0211e4b9f955 (patch) | |
tree | 9498e9c5590c50e9ec368735e7d39a8ea3ef6aee | |
parent | c835170c575a71d4e7666da9c123c3ce2c908c22 (diff) | |
download | cmocka-8ff6c2f13c3945f2409fd54dd05b0211e4b9f955.tar.gz cmocka-8ff6c2f13c3945f2409fd54dd05b0211e4b9f955.tar.bz2 cmocka-8ff6c2f13c3945f2409fd54dd05b0211e4b9f955.zip |
Bump version to 0.4.0.
-rw-r--r-- | CMakeLists.txt | 6 | ||||
-rw-r--r-- | ChangeLog | 9 |
2 files changed, 12 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7752d78..5ad765b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,8 +7,8 @@ cmake_minimum_required(VERSION 2.6.0) set(APPLICATION_NAME ${PROJECT_NAME}) set(APPLICATION_VERSION_MAJOR "0") -set(APPLICATION_VERSION_MINOR "3") -set(APPLICATION_VERSION_PATCH "2") +set(APPLICATION_VERSION_MINOR "4") +set(APPLICATION_VERSION_PATCH "0") set(APPLICATION_VERSION "${APPLICATION_VERSION_MAJOR}.${APPLICATION_VERSION_MINOR}.${APPLICATION_VERSION_PATCH}") @@ -19,7 +19,7 @@ set(APPLICATION_VERSION "${APPLICATION_VERSION_MAJOR}.${APPLICATION_VERSION_MINO # Increment AGE. Set REVISION to 0 # If the source code was changed, but there were no interface changes: # Increment REVISION. -set(LIBRARY_VERSION "0.1.2") +set(LIBRARY_VERSION "0.2.0") set(LIBRARY_SOVERSION "0") # where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked @@ -1,3 +1,12 @@ +Fri Apr 11 2014 Andreas Schneider <asn@cryptomilk.org> + * cmocka: version 0.4.0 + * Added support for group testing. + * Added assert_return_code(). + * Added better messages for errors. + * Added cmake config mode support. + * Fixed bug with unit_test_setup and unit_test_teardown. + * Fixed a lot of small bugs. + Wed Nov 06 2013 Andreas Schneider <asn@cryptomilk.org> * cmocka: version 0.3.2 * Fixed FindNSIS detection. |