Skip to content

Commit df21ec6

Browse files
committed
Bump version to v1.8.1
1 parent d8a1053 commit df21ec6

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

CHANGELOG.md

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

33
* Unreleased
4+
* 1.8.1 (2021-10-18, TZDB 2021d)
45
* Add `make -C examples/MemoryBenchmark epoxy` to GitHub actions.
6+
* Upgrade to TZDB 2021d.
57
* 1.8.0 (2021-10-15, TZDB 2021c)
68
* **Breaking Change**: Move clock classes under `ace_time::clock` and
79
implementation classes under `ace_time::hw` to the new

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This library can be an alternative to the Arduino Time
4141
(https://github.com/PaulStoffregen/Time) and Arduino Timezone
4242
(https://github.com/JChristensen/Timezone) libraries.
4343

44-
**Version**: 1.8.0 (2021-10-15, TZDB version 2021c)
44+
**Version**: 1.8.1 (2021-10-18, TZDB version 2021d)
4545

4646
**Changelog**: [CHANGELOG.md](CHANGELOG.md)
4747

USER_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The primary purpose of AceTime classes is to convert between an integer
44
representing the number of seconds since Epoch (2000-01-01T00:00:00 UTC) to
55
human-readable components in different timezones.
66

7-
**Version**: 1.8.0 (2021-10-15, TZDB 2021c)
7+
**Version**: 1.8.1 (2021-10-18, TZDB 2021d)
88

99
**Related Documents**:
1010

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=1.8.0
2+
version=1.8.1
33
author=Brian T. Park <[email protected]>
44
maintainer=Brian T. Park <[email protected]>
55
sentence=Date, time, timezone classes for Arduino supporting the full IANA TZ Database to convert epoch seconds to date and time components in different time zones.

src/AceTime.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
#include "ace_time/time_period_mutation.h"
6868

6969
// Version format: xxyyzz == "xx.yy.zz"
70-
#define ACE_TIME_VERSION 10800
71-
#define ACE_TIME_VERSION_STRING "1.8.0"
70+
#define ACE_TIME_VERSION 10801
71+
#define ACE_TIME_VERSION_STRING "1.8.1"
7272

7373
#endif

0 commit comments

Comments
 (0)