From 630298f3309f3e7dd53e373c11143474c0d16c0d Mon Sep 17 00:00:00 2001 From: Matthias Hertel Date: Fri, 2 Aug 2024 16:59:26 +0200 Subject: [PATCH] Version 2.6.1 --- CHANGELOG.md | 18 +++++++++++------- library.json | 2 +- library.properties | 2 +- 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 488041b..ea08874 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,11 @@ All notable changes to this project will be documented in this file starting 2021. -## [2.6.0] - 2024-08-01 +## Version 2.6.1 - 2024-08-02 + +fixing compiler error Issue #147 + +## Version 2.6.0 - 2024-08-01 * The new `setup(...)` function allows deferred initialisation. * The SimpleOneButton.ino includes a configuration for the Arduino Nano ESP32 @@ -11,7 +15,7 @@ All notable changes to this project will be documented in this file starting 202 * changes in debouncing. * standard Arduino style .clang formatting in changed files. -## [2.5.0] - 2023-12-02 +## Version 2.5.0 - 2023-12-02 This release is a minor update including som smaller fixes. @@ -21,7 +25,7 @@ This release is a minor update including som smaller fixes. * Introducing the `OneButtonTiny` class for small environments with limited program space and memory. -## [2.1.0] - 2023-05-10 +## Version 2.1.0 - 2023-05-10 This release is a minor update as there is new internal functionality and some functions have been renamed. @@ -39,22 +43,22 @@ There is no functional change on them. Many thanks to the improvements included by (**@IhorNehrutsa**) -## [2.0.4] - 2022-01-22 +## Version 2.0.4 - 2022-01-22 * checked for ESP32 (SimpleOneButton, InterruptOneButton, BlinkMachine) and included example PIN definitions for ESP32 * Documentation changes -## [2.0.3] - 2021-10-26 +## Version 2.0.3 - 2021-10-26 * fixing parameter missuse and potential crash -## [2.0.1] - 2021-01-31 +## Version 2.0.1 - 2021-01-31 * Compiler warning removed * Documentation -## [2.0.0] - 2021-01-22 +## Version 2.0.0 - 2021-01-22 * CHANGELOG created. * Many thanks to the improvements included from #27 (**@aslobodyanuk**), #59 (**@ShaggyDog18**) and #73 (**@geeksville**). diff --git a/library.json b/library.json index c321b38..2f62ad4 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "OneButton", - "version": "2.6.0", + "version": "2.6.1", "keywords": "arduino, button, pushbutton", "description": "This Arduino library is improving the usage of a singe button for input. It shows how to use an digital input pin with a single pushbutton attached for detecting some of the typical button press events like single clicks, double clicks and long-time pressing. This enables you to reuse the same button for multiple functions and lowers the hardware invests.", "repository": { diff --git a/library.properties b/library.properties index a2c6bef..ffee01b 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=OneButton -version=2.6.0 +version=2.6.1 author=Matthias Hertel maintainer=Matthias Hertel, https://www.mathertel.de sentence=Arduino library for improving the usage of a singe input button.