File tree Expand file tree Collapse file tree 4 files changed +18
-7
lines changed Expand file tree Collapse file tree 4 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
33* Unreleased
4+ * 1.1.0 (2021-12-09)
45 * Add optional ` DEPS ` variable containing header files that the ` *.ino `
56 depends on.
6- * Change ` Print::println() ` to print just a ` \n ` instead of ` \r\n ` , which
7- is more compatible on Unix where the line terminator is a single ` \n ` .
7+ * ** Potential Breaking** Change ` Print::println() ` to print just a ` \n `
8+ instead of ` \r\n ` .
9+ * This is more compatible on Unix where the line terminator is a single
10+ ` \n `
11+ * This allows the text output of Arduino programs to be redirected to
12+ a file or piped to another Unix program with the correct line
13+ termination character.
14+ * This change may break some programs (usually unit tests) which print
15+ to a
16+ [ PrintStr] ( https://github.com/bxparks/AceCommon/tree/develop/src/print_str )
17+ object (from my [ AceCommon] ( https://github.com/bxparks/AceCommon )
18+ library), and then expect ` \r\n ` instead of ` \n ` .
819 * Add ` pgm_read_XXX_near() ` and ` pgm_read_XXX_far() ` macros which
920 simply delegate to the ` pgm_read_XXX() ` macros.
1021 * Add ` clockCyclesPerMicrosecond() ` , ` clockCyclesToMicroseconds(a) ` ,
1930 * Add a minimal mock implementation of
2031 [ FastLED] ( https://github.com/FastLED/FastLED ) sufficient for my personal
2132 project.
22- * 1.0 (2021-09-30)
33+ * 1.0.0 (2021-09-30)
2334 * Add ` epoxy_argc ` and ` epoxy_argv ` as extern global variables which
2435 are set to the ` argc ` and ` argv ` parameters passed into the global
2536 ` main() ` .
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.0 (2021-09-30 )
71+ ** Version** : 1.1. 0 (2021-12-09 )
7272
7373** Changelog** : See [ CHANGELOG.md] ( CHANGELOG.md )
7474
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 10000
18- #define EPOXY_DUINO_VERSION_STRING " 1.0 .0"
17+ #define EPOXY_DUINO_VERSION 10100
18+ #define EPOXY_DUINO_VERSION_STRING " 1.1 .0"
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.0 .0" ,
3+ "version" : " 1.1 .0" ,
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