Skip to content

Commit c649408

Browse files
committed
Bump version to 1.5.0
1 parent bacbf43 commit c649408

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.5.0 (2022-12-08)
45
* Support compiling plain `*.c` files in libraries and in the application.
56
* The C files are assumed to be written in C11.
67
* Define the `-D ARDUINO=100` macro.

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.4.0 (2022-11-06)
74+
**Version**: 1.5.0 (2022-12-08)
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 10400
18-
#define EPOXY_DUINO_VERSION_STRING "1.4.0"
17+
#define EPOXY_DUINO_VERSION 10500
18+
#define EPOXY_DUINO_VERSION_STRING "1.5.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.4.0",
3+
"version": "1.5.0",
44
"description": "Compile and run Arduino programs natively on Linux, MacOS and FreeBSD.",
55
"keywords": [
66
"unit-test",

0 commit comments

Comments
 (0)