From 935a98fc40ebd1c73544a1df8a39acd8aff36e03 Mon Sep 17 00:00:00 2001 From: Brian Park Date: Wed, 25 Apr 2018 16:06:40 -0700 Subject: [PATCH] Bump version to 0.5.0 --- CHANGELOG.md | 6 ++++++ README.md | 2 +- docs/doxygen.cfg | 2 +- library.properties | 2 +- src/AUnit.h | 2 +- src/AUnitVerbose.h | 4 ++-- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 993ab2f..709fa0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +* 0.5.0 (2018-04-25) + * Support verbose assertion messages using AUnitVerbose.h. Fixes #8. + * Better assertion messages for assertTrue() and assertFalse(). Fixes #17. + * Print duration of test runner at the end. Fixes #18. + * Extract meta assertion tests to tests/AUnitMetaTest, so that core + tests/AUnitTest can fit inside an Arduino Micro. * 0.4.2 (2018-04-10) * Fix FSM for excluded tests so that they bypass setup() and teardown(). * 0.4.1 (2018-04-06) diff --git a/README.md b/README.md index 93ceb15..f956561 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A unit testing framework for Arduino platforms inspired by ArduinoUnit and Google Test. -Version: 0.4.2 (2018-04-10) +Version: 0.5.0 (2018-04-25) ## Summary diff --git a/docs/doxygen.cfg b/docs/doxygen.cfg index 45cee70..d9275a1 100644 --- a/docs/doxygen.cfg +++ b/docs/doxygen.cfg @@ -38,7 +38,7 @@ PROJECT_NAME = "AUnit" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.4.1 +PROJECT_NUMBER = 0.5.0 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/library.properties b/library.properties index 85c9f2b..84a8156 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=AUnit -version=0.4.2 +version=0.5.0 author=Brian T. Park maintainer=Brian T. Park sentence=A unit testing framework for Arduino platforms inspired by ArduinoUnit and Google Test. diff --git a/src/AUnit.h b/src/AUnit.h index 58a685a..25897bc 100644 --- a/src/AUnit.h +++ b/src/AUnit.h @@ -46,6 +46,6 @@ SOFTWARE. #include "aunit/TestMacros.h" // Version format: xxyyzz == "xx.yy.zz" -#define AUNIT_VERSION 000402 +#define AUNIT_VERSION 000500 #endif diff --git a/src/AUnitVerbose.h b/src/AUnitVerbose.h index cc79010..156f6a1 100644 --- a/src/AUnitVerbose.h +++ b/src/AUnitVerbose.h @@ -25,7 +25,7 @@ SOFTWARE. /** * @file AUnitVerbose.h * - * Same as AUnit.h except that the verbose versions of teh various assertXxx() + * Same as AUnit.h except that the verbose versions of the various assertXxx() * macros are provided. These capture the strings of the actual arguments in * the assert macros and print more verbose and helpful messages in the same * format used by ArduinoUnit. The cost is 20-25% increase in flash memory to @@ -49,6 +49,6 @@ SOFTWARE. #include "aunit/TestMacros.h" // Version format: xxyyzz == "xx.yy.zz" -#define AUNIT_VERSION 000402 +#define AUNIT_VERSION 000500 #endif