Skip to content

Commit

Permalink
Bump version to 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bxparks committed Feb 24, 2022
1 parent 2417ef9 commit 1e8490a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

* Unreleased
* 1.2.3 (2022-02-24)
* Rename `unixhostduino_main()` to `epoxyduino_main()`, and make it
static. No need to expose it publicly.
* Add `enableTerminalEcho()` function to enable terminal echoing.
Expand All @@ -17,7 +18,7 @@
loss, even if the `seek()` offset is identical to the internal cursor,
so might be expected to be optimized away.
* Add notes about [Debugging](README.md#Debugging) tools and options
under a Unix environment.
under a Unix environment, such as Valgrind.
* 1.2.2 (2022-02-02)
* Add a `using Print::write` statement in `StdioSerial.h` to
pull in all other overloaded `write()` methods from the parent `Print`
Expand Down
4 changes: 2 additions & 2 deletions 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.2 (2022-02-02)
**Version**: 1.2.3 (2022-02-24)

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

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

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

1. Compile your program using the `-g` flag.
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 10202
#define EPOXY_DUINO_VERSION_STRING "1.2.2"
#define EPOXY_DUINO_VERSION 10203
#define EPOXY_DUINO_VERSION_STRING "1.2.3"

#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.2",
"version": "1.2.3",
"description": "Compile and run Arduino programs natively on Linux, MacOS and FreeBSD.",
"keywords": [
"unit-test",
Expand Down

0 comments on commit 1e8490a

Please sign in to comment.