Skip to content

Commit

Permalink
Bump version to 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bxparks committed Jan 10, 2022
1 parent 83406e4 commit f6e9f7c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
# Changelog

* Unreleased
* 1.2.1 (2022-01-10)
* Add `strncasecmp_P()` to `pgmspace.h`. See
[PR#52](https://github.com/bxparks/EpoxyDuino/pull/52).
* Add [Bugs and Limitations](README.md##BugsAndLimitations) section in
README.md
* Add comment in
[github/workflows/aunit_tests.yml](github/workflows/aunit_tests.yml)
that a `pull_request` event may be useful. Upgrade GitHub docker image to
Ubuntu 20.04.
* 1.2.0 (2021-12-29)
* Simplify `StdioSerial` class, see
[Issue#43](https://github.com/bxparks/EpoxyDuino/issues/43).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ The disadvantages are:
environments (e.g. 16-bit `int` versus 32-bit `int`, or 32-bit `long` versus
64-bit `long`).

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

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

Expand Down
4 changes: 2 additions & 2 deletions cores/epoxy/Arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
#define EPOXY_DUINO_EPOXY_ARDUINO_H

// xx.yy.zz => xxyyzz (without leading 0)
#define EPOXY_DUINO_VERSION 10200
#define EPOXY_DUINO_VERSION_STRING "1.2.0"
#define EPOXY_DUINO_VERSION 10201
#define EPOXY_DUINO_VERSION_STRING "1.2.1"

#include <algorithm> // min(), max()
#include <cmath> // abs()
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "EpoxyDuino",
"version": "1.2.0",
"version": "1.2.1",
"description": "Compile and run Arduino programs natively on Linux, MacOS and FreeBSD.",
"keywords": [
"unit-test",
Expand Down

0 comments on commit f6e9f7c

Please sign in to comment.