Skip to content

Commit

Permalink
Bump version to 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bxparks committed Aug 27, 2019
1 parent fd6316f commit f778ba8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

* Unreleased
* 0.8.1
* Update `SystemClockCoroutine` to be compatible with
`COROUTINE_DELAY_SECONDS()` API changed in AceRoutine v0.3.
* Fix typos and grammar errors in `USER_GUIDE.md` and `README.md`.
* Remove `YearMonth` abstraction in `BasicZoneProcessor`, saving 12 bytes
of flash in WorldClock.
* 0.8
* Handle `Fri<=1` correctly in various python scripts. (#17)
* Improve resolution of zonedb files and ZoneProcessor classes. (#18)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ Conversion from an epochSeconds to date-time components including timezone
* 2.8 microseconds on an ESP32,
* 6 microseconds on a Teensy 3.2.

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

**Status**: Supports 1-minute resolution for all Extended TimeZones, and
validated against Hinnant date library from 1975 until 2050. I think this will
Expand Down
2 changes: 1 addition & 1 deletion USER_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

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

## Installation

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=AceTime
version=0.8
version=0.8.1
author=Brian T. Park <brian@xparks.net>
maintainer=Brian T. Park <brian@xparks.net>
sentence=Date, time, clock, and TZ Database timezones for Arduino.
Expand Down
4 changes: 2 additions & 2 deletions src/AceTime.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
#include "ace_time/clock/SystemClockCoroutine.h"

// Version format: xxyyzz == "xx.yy.zz"
#define ACE_TIME_VERSION 800
#define ACE_TIME_VERSION_STRING "0.8"
#define ACE_TIME_VERSION 801
#define ACE_TIME_VERSION_STRING "0.8.1"

#endif

0 comments on commit f778ba8

Please sign in to comment.