Skip to content

Commit f6e9f7c

Browse files
committed
Bump version to 1.2.1
1 parent 83406e4 commit f6e9f7c

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

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

33
* Unreleased
4+
* 1.2.1 (2022-01-10)
45
* Add `strncasecmp_P()` to `pgmspace.h`. See
56
[PR#52](https://github.com/bxparks/EpoxyDuino/pull/52).
7+
* Add [Bugs and Limitations](README.md##BugsAndLimitations) section in
8+
README.md
9+
* Add comment in
10+
[github/workflows/aunit_tests.yml](github/workflows/aunit_tests.yml)
11+
that a `pull_request` event may be useful. Upgrade GitHub docker image to
12+
Ubuntu 20.04.
613
* 1.2.0 (2021-12-29)
714
* Simplify `StdioSerial` class, see
815
[Issue#43](https://github.com/bxparks/EpoxyDuino/issues/43).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The disadvantages are:
6868
environments (e.g. 16-bit `int` versus 32-bit `int`, or 32-bit `long` versus
6969
64-bit `long`).
7070

71-
**Version**: 1.2.0 (2021-12-29)
71+
**Version**: 1.2.1 (2022-01-10)
7272

7373
**Changelog**: See [CHANGELOG.md](CHANGELOG.md)
7474

cores/epoxy/Arduino.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
#define EPOXY_DUINO_EPOXY_ARDUINO_H
1515

1616
// xx.yy.zz => xxyyzz (without leading 0)
17-
#define EPOXY_DUINO_VERSION 10200
18-
#define EPOXY_DUINO_VERSION_STRING "1.2.0"
17+
#define EPOXY_DUINO_VERSION 10201
18+
#define EPOXY_DUINO_VERSION_STRING "1.2.1"
1919

2020
#include <algorithm> // min(), max()
2121
#include <cmath> // abs()

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "EpoxyDuino",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Compile and run Arduino programs natively on Linux, MacOS and FreeBSD.",
55
"keywords": [
66
"unit-test",

0 commit comments

Comments
 (0)