Skip to content

Commit 6eea045

Browse files
committed
Bump version to 0.2.1
1 parent f3294a6 commit 6eea045

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

CHANGELOG.md

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

3+
* 0.2.1 (2019-07-01)
4+
* Fix various typos in README.md.
5+
* Fix broken compile of ESP32 and ESP8266 boards by fixing fqbn.
6+
* Add missing `pinMode()` in some examples.
7+
* Add `ACE_ROUTINE_VERSION_STRING` for easier display for version number.
38
* 0.2 (2018-10-02)
49
* Add `COROUTINE_DELAY_SECONDS()` to support delays longer than
510
32767 millis.

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A low-memory, fast-switching, cooperative multitasking library using
44
stackless coroutines on Arduino platforms.
55

6-
Version: 0.2 (2018-10-02)
6+
Version: 0.2.1 (2019-07-01)
77

88
This library is currently in "beta" status. I'm releasing it through the Arduino
99
Library Manager to solicit feedback from interested users. Send me an email or
@@ -1309,6 +1309,11 @@ I will occasionally test on the following hardware as a sanity check:
13091309
* Arduino Pro Mini clone (16 MHz ATmega328P)
13101310
* ESP-01 (ESP-01 module, 80 MHz ESP8266)
13111311

1312+
The library has been verified to work on Linux or MacOS (using both g++ and
1313+
clang++ compilers) using the
1314+
[unitduino](https://github.com/bxparks/AUnit/tree/develop/unitduino) emulation
1315+
layer.
1316+
13121317
## Changelog
13131318

13141319
See [CHANGELOG.md](CHANGELOG.md).

docs/doxygen.cfg

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

41-
PROJECT_NUMBER = 0.2
41+
PROJECT_NUMBER = 0.2.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=AceRoutine
2-
version=0.2
2+
version=0.2.1
33
author=Brian T. Park <[email protected]>
44
maintainer=Brian T. Park <[email protected]>
55
sentence=A low-memory, fast-switching, cooperative multitasking library using stackless coroutines on Arduino platforms.

src/AceRoutine.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ SOFTWARE.
3737
#include "ace_routine/Channel.h"
3838

3939
// Version format: xxyyzz == "xx.yy.zz"
40-
#define ACE_ROUTINE_VERSION 200
41-
#define ACE_ROUTINE_VERSION_STRING "0.2"
40+
#define ACE_ROUTINE_VERSION 201
41+
#define ACE_ROUTINE_VERSION_STRING "0.2.1"
4242

4343
#endif

0 commit comments

Comments
 (0)