Skip to content

Commit

Permalink
Bump version to v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasdietrich committed Nov 10, 2024
1 parent f9be8cf commit f57c0ae
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions changelogs.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## avrtos v1.3.1

Key features:
- Fix Arduino build

## avrtos v1.3.0

Key Features:
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
6 changes: 3 additions & 3 deletions src/avrtos/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit f57c0ae

Please sign in to comment.