Skip to content

Commit f778ba8

Browse files
committed
Bump version to 0.8.1
1 parent fd6316f commit f778ba8

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Changelog
22

33
* Unreleased
4+
* 0.8.1
45
* Update `SystemClockCoroutine` to be compatible with
56
`COROUTINE_DELAY_SECONDS()` API changed in AceRoutine v0.3.
7+
* Fix typos and grammar errors in `USER_GUIDE.md` and `README.md`.
8+
* Remove `YearMonth` abstraction in `BasicZoneProcessor`, saving 12 bytes
9+
of flash in WorldClock.
610
* 0.8
711
* Handle `Fri<=1` correctly in various python scripts. (#17)
812
* Improve resolution of zonedb files and ZoneProcessor classes. (#18)

README.md

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

212-
**Version**: 0.8 (2019-08-19, TZ DB version 2019b, beta)
212+
**Version**: 0.8.1 (2019-08-26, TZ DB version 2019b, beta)
213213

214214
**Status**: Supports 1-minute resolution for all Extended TimeZones, and
215215
validated against Hinnant date library from 1975 until 2050. I think this will

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.8 (2019-08-19, TZ DB version 2019b, beta)
5+
Version: 0.8.1 (2019-08-26, TZ DB version 2019b, beta)
66

77
## Installation
88

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.8
2+
version=0.8.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 800
59-
#define ACE_TIME_VERSION_STRING "0.8"
58+
#define ACE_TIME_VERSION 801
59+
#define ACE_TIME_VERSION_STRING "0.8.1"
6060

6161
#endif

0 commit comments

Comments
 (0)