File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 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.
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 `
Original file line number Diff line number Diff 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
676676I 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
678678start:
679679
6806801 . Compile your program using the ` -g ` flag.
Original file line number Diff line number Diff line change 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()
Original file line number Diff line number Diff line change 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" ,
You can’t perform that action at this time.
0 commit comments