Skip to content

Commit

Permalink
Bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bxparks committed Dec 9, 2021
1 parent 4d2571c commit 26ac365
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
17 changes: 14 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
# Changelog

* Unreleased
* 1.1.0 (2021-12-09)
* Add optional `DEPS` variable containing header files that the `*.ino`
depends on.
* Change `Print::println()` to print just a `\n` instead of `\r\n`, which
is more compatible on Unix where the line terminator is a single `\n`.
* **Potential Breaking** Change `Print::println()` to print just a `\n`
instead of `\r\n`.
* This is more compatible on Unix where the line terminator is a single
`\n`
* This allows the text output of Arduino programs to be redirected to
a file or piped to another Unix program with the correct line
termination character.
* This change may break some programs (usually unit tests) which print
to a
[PrintStr](https://github.com/bxparks/AceCommon/tree/develop/src/print_str)
object (from my [AceCommon](https://github.com/bxparks/AceCommon)
library), and then expect `\r\n` instead of `\n`.
* Add `pgm_read_XXX_near()` and `pgm_read_XXX_far()` macros which
simply delegate to the `pgm_read_XXX()` macros.
* Add `clockCyclesPerMicrosecond()`, `clockCyclesToMicroseconds(a)`,
Expand All @@ -19,7 +30,7 @@
* Add a minimal mock implementation of
[FastLED](https://github.com/FastLED/FastLED) sufficient for my personal
project.
* 1.0 (2021-09-30)
* 1.0.0 (2021-09-30)
* Add `epoxy_argc` and `epoxy_argv` as extern global variables which
are set to the `argc` and `argv` parameters passed into the global
`main()`.
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.0 (2021-09-30)
**Version**: 1.1.0 (2021-12-09)

**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 10000
#define EPOXY_DUINO_VERSION_STRING "1.0.0"
#define EPOXY_DUINO_VERSION 10100
#define EPOXY_DUINO_VERSION_STRING "1.1.0"

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

0 comments on commit 26ac365

Please sign in to comment.