From f0de6feb7ced16d8605935b52f7371c1424e1580 Mon Sep 17 00:00:00 2001 From: Brian Park Date: Fri, 16 Mar 2018 16:41:44 -0700 Subject: [PATCH] Increment to v0.2.0 since TestRunner::setTimeout() is an API addition --- CHANGELOG.md | 3 +++ library.properties | 2 +- src/AUnit.h | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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