Skip to content

Commit 36acb15

Browse files
committed
Bump version to 1.6.0
1 parent eed664c commit 36acb15

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
* Unreleased
4+
* 1.6.0 (2024-07-25)
45
* Add `strncat_P()` to `pgmspace.h`.
56
* Add `ESP.restart()` and `ESP.getChipId()`. See
67
[PR#84](https://github.com/bxparks/EpoxyDuino/pull/84).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The disadvantages are:
7171
environments (e.g. 16-bit `int` versus 32-bit `int`, or 32-bit `long` versus
7272
64-bit `long`).
7373

74-
**Version**: 1.5.0 (2022-12-08)
74+
**Version**: 1.6.0 (2024-07-25)
7575

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

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 10500
18-
#define EPOXY_DUINO_VERSION_STRING "1.5.0"
17+
#define EPOXY_DUINO_VERSION 10600
18+
#define EPOXY_DUINO_VERSION_STRING "1.6.0"
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.5.0",
3+
"version": "1.6.0",
44
"description": "Compile and run Arduino programs natively on Linux, MacOS and FreeBSD.",
55
"keywords": [
66
"unit-test",

0 commit comments

Comments
 (0)