Skip to content

Commit c9e1ffc

Browse files
committed
Bump version to 1.4.1
1 parent b80dff9 commit c9e1ffc

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22

33
* Unreleased
4+
* 1.4.1 (2020-11-12)
5+
* Add Table of Contents to README.md to help navigation.
6+
* No functional change in this release.
47
* 1.4 (2020-10-28)
58
* Support comparison of 2 arbitrary pointers using
69
`assertEqual(const void*, const void*)` and

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ instead of having to go through the Arduino IDE. Both the AUniter and
1818
UnixHostDuino tools can be used in a continuous integration system like Jenkins,
1919
or with [GitHub Actions](https://github.com/features/actions).
2020

21-
**Version**: 1.4 (2020-10-28)
21+
**Version**: 1.4.1 (2020-11-12)
2222

2323
**Changelog**: [CHANGELOG.md](CHANGELOG.md)
2424

docs/doxygen.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "AUnit"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 1.4
41+
PROJECT_NUMBER = 1.4.1
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=AUnit
2-
version=1.4
2+
version=1.4.1
33
author=Brian T. Park <[email protected]>
44
maintainer=Brian T. Park <[email protected]>
55
sentence=A unit testing framework for Arduino platforms inspired by ArduinoUnit and Google Test.

src/AUnit.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ SOFTWARE.
6060
#include "aunit/TestMacros.h"
6161

6262
// Version format: xxyyzz == "xx.yy.zz"
63-
#define AUNIT_VERSION 10400
64-
#define AUNIT_VERSION_STRING "1.4"
63+
#define AUNIT_VERSION 10401
64+
#define AUNIT_VERSION_STRING "1.4.1"
6565

6666
#endif

src/AUnitVerbose.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ SOFTWARE.
5050
#include "aunit/TestMacros.h"
5151

5252
// Version format: xxyyzz == "xx.yy.zz"
53-
#define AUNIT_VERSION 10400
54-
#define AUNIT_VERSION_STRING "1.4"
53+
#define AUNIT_VERSION 10401
54+
#define AUNIT_VERSION_STRING "1.4.1"
5555

5656
#endif

0 commit comments

Comments
 (0)