Skip to content

Commit 1e8490a

Browse files
committed
Bump version to 1.2.3
1 parent 2417ef9 commit 1e8490a

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
* Unreleased
4+
* 1.2.3 (2022-02-24)
45
* Rename `unixhostduino_main()` to `epoxyduino_main()`, and make it
56
static. No need to expose it publicly.
67
* Add `enableTerminalEcho()` function to enable terminal echoing.
@@ -17,7 +18,7 @@
1718
loss, even if the `seek()` offset is identical to the internal cursor,
1819
so might be expected to be optimized away.
1920
* Add notes about [Debugging](README.md#Debugging) tools and options
20-
under a Unix environment.
21+
under a Unix environment, such as Valgrind.
2122
* 1.2.2 (2022-02-02)
2223
* Add a `using Print::write` statement in `StdioSerial.h` to
2324
pull in all other overloaded `write()` methods from the parent `Print`

README.md

Lines changed: 2 additions & 2 deletions
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.2 (2022-02-02)
71+
**Version**: 1.2.3 (2022-02-24)
7272

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

@@ -674,7 +674,7 @@ Below are some things that I have found useful in my own limited experience.
674674
#### Valgrind
675675

676676
I have found the [Valgrind](https://valgrind.org/docs/manual/quick-start.html)
677-
quite helpful in tracking down Segmentation Fault crashes. Here is a quick
677+
tool quite helpful in tracking down Segmentation Fault crashes. Here is a quick
678678
start:
679679

680680
1. Compile your program using the `-g` flag.

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 10202
18-
#define EPOXY_DUINO_VERSION_STRING "1.2.2"
17+
#define EPOXY_DUINO_VERSION 10203
18+
#define EPOXY_DUINO_VERSION_STRING "1.2.3"
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.2",
3+
"version": "1.2.3",
44
"description": "Compile and run Arduino programs natively on Linux, MacOS and FreeBSD.",
55
"keywords": [
66
"unit-test",

0 commit comments

Comments
 (0)