diff --git a/CHANGELOG.md b/CHANGELOG.md index 9eabdb5..b5ae137 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +* v0.2.0 (2018-03-16) + * TestRunner can time out long running tests. Default time out is 10 + seconds, but is configurable using TestRunner::setTimeout(). * v0.1.1 (2018-03-15) * Fix small bug with Test::setPassOrFail() which caused assertXxx() macros which returned true to terminate the testing() test cases. diff --git a/library.properties b/library.properties index 470c580..db8a754 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=AUnit -version=0.1.1 +version=0.2.0 author=Brian T. Park maintainer=Brian T. Park sentence=A unit testing framework for Arduino platforms inspired by ArduinoUnit. diff --git a/src/AUnit.h b/src/AUnit.h index 64fa3fc..3424184 100644 --- a/src/AUnit.h +++ b/src/AUnit.h @@ -33,6 +33,6 @@ SOFTWARE. #include "aunit/Assertion.h" // Version format: 010203 == "1.2.3" -#define AUNIT_VERSION 000101 +#define AUNIT_VERSION 000200 #endif