Skip to content

Commit

Permalink
Bump version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bxparks committed Apr 25, 2018
1 parent 12fba22 commit 935a98f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=AUnit
version=0.4.2
version=0.5.0
author=Brian T. Park <[email protected]>
maintainer=Brian T. Park <[email protected]>
sentence=A unit testing framework for Arduino platforms inspired by ArduinoUnit and Google Test.
Expand Down
2 changes: 1 addition & 1 deletion src/AUnit.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ SOFTWARE.
#include "aunit/TestMacros.h"

// Version format: xxyyzz == "xx.yy.zz"
#define AUNIT_VERSION 000402
#define AUNIT_VERSION 000500

#endif
4 changes: 2 additions & 2 deletions src/AUnitVerbose.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -49,6 +49,6 @@ SOFTWARE.
#include "aunit/TestMacros.h"

// Version format: xxyyzz == "xx.yy.zz"
#define AUNIT_VERSION 000402
#define AUNIT_VERSION 000500

#endif

0 comments on commit 935a98f

Please sign in to comment.