From 76a78f53e6b6378bd973d7c773d24af8162076c1 Mon Sep 17 00:00:00 2001 From: Rob Tillaart Date: Tue, 3 Feb 2026 14:43:14 +0100 Subject: [PATCH] update GitHub actions --- .github/workflows/arduino-lint.yml | 2 +- .github/workflows/arduino_test_runner.yml | 3 +-- .github/workflows/jsoncheck.yml | 2 +- CHANGELOG.md | 6 +++++- LICENSE | 2 +- README.md | 2 ++ SHEX.cpp | 2 +- SHEX.h | 4 ++-- examples/SHEX_vtab/SHEX_vtab.ino | 2 +- library.json | 2 +- library.properties | 2 +- 11 files changed, 17 insertions(+), 12 deletions(-) diff --git a/.github/workflows/arduino-lint.yml b/.github/workflows/arduino-lint.yml index 0ad60f4..aed264b 100644 --- a/.github/workflows/arduino-lint.yml +++ b/.github/workflows/arduino-lint.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 5 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: arduino/arduino-lint-action@v2 with: library-manager: update diff --git a/.github/workflows/arduino_test_runner.yml b/.github/workflows/arduino_test_runner.yml index 1897982..a2a5f07 100644 --- a/.github/workflows/arduino_test_runner.yml +++ b/.github/workflows/arduino_test_runner.yml @@ -6,9 +6,8 @@ jobs: runTest: runs-on: ubuntu-latest timeout-minutes: 20 - steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ruby/setup-ruby@v1 with: ruby-version: 2.6 diff --git a/.github/workflows/jsoncheck.yml b/.github/workflows/jsoncheck.yml index 8804e69..2c52dc7 100644 --- a/.github/workflows/jsoncheck.yml +++ b/.github/workflows/jsoncheck.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 5 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: json-syntax-check uses: limitusus/json-syntax-check@v2 with: diff --git a/CHANGELOG.md b/CHANGELOG.md index 84a0521..21f5cc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.3.5] - 2026-02-03 +- update GitHub actions (v6) +- minor edits + ## [0.3.4] - 2025-08-25 -- update github actions +- update GitHub actions (v5) - minor edits ## [0.3.3] - 2023-11-21 diff --git a/LICENSE b/LICENSE index 615b8fd..8417ffc 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2025 Rob Tillaart +Copyright (c) 2020-2026 Rob Tillaart Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 7770c50..a2a9e30 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,8 @@ This makes it possible to switch between the modes e.g. between 'debugging' and One can toggle the character count at the start of the line. +Feedback as always is welcome. + ### SHEXA diff --git a/SHEX.cpp b/SHEX.cpp index eea6a6b..ffdc910 100644 --- a/SHEX.cpp +++ b/SHEX.cpp @@ -1,7 +1,7 @@ // // FILE: SHEX.cpp // AUTHOR: Rob Tillaart -// VERSION: 0.3.4 +// VERSION: 0.3.5 // PURPOSE: Arduino library to generate hex dump over Serial // DATE: 2020-05-24 // URL: https://github.com/RobTillaart/SHEX diff --git a/SHEX.h b/SHEX.h index 0abac86..5e65461 100644 --- a/SHEX.h +++ b/SHEX.h @@ -2,7 +2,7 @@ // // FILE: SHEX.h // AUTHOR: Rob Tillaart -// VERSION: 0.3.4 +// VERSION: 0.3.5 // PURPOSE: Arduino library to generate hex dump over Serial // DATE: 2020-05-24 // URL: https://github.com/RobTillaart/SHEX @@ -12,7 +12,7 @@ #include "Print.h" -#define SHEX_LIB_VERSION (F("0.3.4")) +#define SHEX_LIB_VERSION (F("0.3.5")) #if not defined(SHEX_DEFAULT_LENGTH) diff --git a/examples/SHEX_vtab/SHEX_vtab.ino b/examples/SHEX_vtab/SHEX_vtab.ino index ccd720d..a7a84ab 100644 --- a/examples/SHEX_vtab/SHEX_vtab.ino +++ b/examples/SHEX_vtab/SHEX_vtab.ino @@ -2,7 +2,7 @@ // FILE: SHEX_vtab.ino // AUTHOR: Rob Tillaart // PURPOSE: demo SHEX hex dump class -// DATE: 2022-05-28 +// URL: https://github.com/RobTillaart/SHEX #include "SHEX.h" diff --git a/library.json b/library.json index 2ba6080..4e9b61c 100644 --- a/library.json +++ b/library.json @@ -15,7 +15,7 @@ "type": "git", "url": "https://github.com/RobTillaart/SHEX.git" }, - "version": "0.3.4", + "version": "0.3.5", "license": "MIT", "frameworks": "*", "platforms": "*", diff --git a/library.properties b/library.properties index b91bb27..1bff662 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=SHEX -version=0.3.4 +version=0.3.5 author=Rob Tillaart maintainer=Rob Tillaart sentence=Arduino library to generate hex dump over Serial