Skip to content

Commit 27d7e02

Browse files
committed
Bump version to 1.2.2
1 parent 3afaad0 commit 27d7e02

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,11 +1,13 @@
11
# Changelog
22

33
* Unreleased
4+
* 1.2.2 (2020-12-20)
45
* Add generic definition of `FPSTR()` macro for unrecognized platforms.
56
Allows code with `ARDUINO_ARCH_STM32` dependencies to compile. I will
67
support it officially after I get hardware to perform actual validation.
78
* Clean up MemoryBenchmark scripts for consistency with other `Ace*`
89
libraries.
10+
* No functional change in this release.
911
* 1.2.1 (2020-11-12)
1012
* Add `DEVELOPER.md` notes to myself.
1113
* Add python script to generate the README.md in

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ AceRoutine is a self-contained library that works on any platform supporting the
8181
Arduino API (AVR, Teensy, ESP8266, ESP32, etc), and it provides a handful of
8282
additional macros that can reduce boilerplate code.
8383

84-
**Version**: 1.2.1 (2020-11-12)
84+
**Version**: 1.2.2 (2020-12-20)
8585

8686
**Changelog**: [CHANGELOG.md](CHANGELOG.md)
8787

USER_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ See the [README.md](README.md) for installation instructions and other
44
background information. This document describes how to use the library once it
55
is installed.
66

7-
**Version**: 1.2.1 (2020-11-12)
7+
**Version**: 1.2.2 (2020-12-20)
88

99
## Table of Contents
1010

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 = 1.2.1
41+
PROJECT_NUMBER = 1.2.2
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=1.2.1
2+
version=1.2.2
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
@@ -41,7 +41,7 @@ SOFTWARE.
4141
#include "ace_routine/Channel.h"
4242

4343
// Version format: xxyyzz == "xx.yy.zz"
44-
#define ACE_ROUTINE_VERSION 10201
45-
#define ACE_ROUTINE_VERSION_STRING "1.2.1"
44+
#define ACE_ROUTINE_VERSION 10202
45+
#define ACE_ROUTINE_VERSION_STRING "1.2.2"
4646

4747
#endif

0 commit comments

Comments
 (0)