From f57c0aef6e85d1278b32edfbc16c85b855928982 Mon Sep 17 00:00:00 2001 From: Lucas Dietrich Date: Sun, 10 Nov 2024 20:55:03 +0100 Subject: [PATCH] Bump version to v1.3.1 --- changelogs.md | 5 +++++ library.properties | 2 +- src/avrtos/defines.h | 6 +++--- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/changelogs.md b/changelogs.md index 7e72eb9..c8f3445 100644 --- a/changelogs.md +++ b/changelogs.md @@ -1,5 +1,10 @@ # Changelog +## avrtos v1.3.1 + +Key features: +- Fix Arduino build + ## avrtos v1.3.0 Key Features: diff --git a/library.properties b/library.properties index 4863999..b727e39 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=avrtos -version=1.3.0 +version=1.3.1 author=Lucas Dietrich maintainer=Lucas Dietrich sentence=RTOS for AVR Arduino microcontrollers (Uno & Mega) diff --git a/src/avrtos/defines.h b/src/avrtos/defines.h index 1cbdbc4..1106d6f 100644 --- a/src/avrtos/defines.h +++ b/src/avrtos/defines.h @@ -11,13 +11,13 @@ #include "errno.h" #include "sys.h" -// AVRTOS version 1.3.0 +// AVRTOS version 1.3.1 #define AVRTOS_VERSION_MAJOR 1 #define AVRTOS_VERSION_MINOR 3 -#define AVRTOS_VERSION_REVISION 0 +#define AVRTOS_VERSION_REVISION 1 #define AVRTOS_VERSION \ ((AVRTOS_VERSION_MAJOR << 16) | (AVRTOS_VERSION_MINOR << 8) | AVRTOS_VERSION_REVISION) -#define AVRTOS_VERSION_STRING "1.3.0" +#define AVRTOS_VERSION_STRING "1.3.1" #define AVRTOS_VERSION_STRING_FULL \ "AVRTOS v" AVRTOS_VERSION_STRING " (c) 2021-2024 Lucas Dietrich"