Skip to content

Commit 56e9b6c

Browse files
committed
Bump version to 0.6.1
1 parent 77c636f commit 56e9b6c

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

CHANGELOG.md

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

33
* Unreleased
4+
* 0.6.1
45
* Create a second Jenkins continuous build pipeline file
56
`tests/JenskinfileUnitHost` to use UnitHostDuino to run the unit tests
67
natively on Linux. The entire set of unit tests builds and runs in 20
@@ -11,6 +12,7 @@
1112
only on some environments (e.g. ESP8266, ESP32).
1213
* Add circuit schematics to OledClock and WorldClock examples.
1314
* Simplify logging::printf() used internally for debugging.
15+
* No functional change from 0.6.
1416
* 0.6
1517
* Update tests to use `UnixHostDuino`.
1618
* Fix broken restore functionality in `CommandLineClock`. Make it work

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ Conversion from an epochSeconds to date-time components including timezone
198198
* 2.8 microseconds on an ESP32,
199199
* 6 microseconds on a Teensy 3.2.
200200

201-
**Version**: 0.6 (2019-08-02, TZ DB version 2019a, beta)
201+
**Version**: 0.6.1 (2019-08-07, TZ DB version 2019a, beta)
202202

203203
**Status**: Stable, no major refactoring planned. Expected to go to 1.0 soon.
204204

USER_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
See the [README.md](README.md) for introductory background.
44

5-
Version: 0.6 (2019-08-02, TZ DB version 2019a, beta)
5+
Version: 0.6.1 (2019-08-07, TZ DB version 2019a, beta)
66

77
## Installation
88

docs/doxygen.cfg

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

41-
PROJECT_NUMBER = 0.6
41+
PROJECT_NUMBER = 0.6.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=AceTime
2-
version=0.6
2+
version=0.6.1
33
author=Brian T. Park <[email protected]>
44
maintainer=Brian T. Park <[email protected]>
55
sentence=Date, time, clock, and TZ Database timezones for Arduino.

src/AceTime.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
#include "ace_time/clock/SystemClockCoroutine.h"
5656

5757
// Version format: xxyyzz == "xx.yy.zz"
58-
#define ACE_TIME_VERSION 600
59-
#define ACE_TIME_VERSION_STRING "0.6"
58+
#define ACE_TIME_VERSION 601
59+
#define ACE_TIME_VERSION_STRING "0.6.1"
6060

6161
#endif

0 commit comments

Comments
 (0)