From 0fbf97716b06e69158a1d0f4716aa34bf03990df Mon Sep 17 00:00:00 2001 From: Evert Arias Date: Tue, 4 Jul 2023 11:36:22 -0400 Subject: [PATCH] Increment version --- library.json | 2 +- library.properties | 2 +- src/EasyButton.cpp | 2 +- src/EasyButton.h | 2 +- src/EasyButtonBase.cpp | 2 +- src/EasyButtonBase.h | 2 +- src/EasyButtonTouch.cpp | 2 +- src/EasyButtonTouch.h | 2 +- src/EasyButtonVirtual.cpp | 2 +- src/EasyButtonVirtual.h | 2 +- src/Sequence.cpp | 2 +- src/Sequence.h | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/library.json b/library.json index d78d3f0..732c7d7 100644 --- a/library.json +++ b/library.json @@ -2,7 +2,7 @@ "name": "EasyButton", "keywords": "IO, button, sensor, arduino", "description": "EasyButton is an small Arduino library for debouncing momentary contact switches like tactile buttons. It uses events and callbacks to trigger actions when a button is pressed once or held for a given duration. It also provides a sequence counter to be able to rise an event when a given pattern of presses has been matched.", - "version": "2.0.1", + "version": "2.0.3", "repository": { "type": "git", "url": "https://github.com/evert-arias/EasyButton" diff --git a/library.properties b/library.properties index 8954708..309945c 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=EasyButton -version=2.0.2 +version=2.0.3 author=Evert Arias maintainer=Evert Arias sentence=Arduino library for debouncing momentary contact switches, detect press, release, long press and sequences with event definitions and callbacks. diff --git a/src/EasyButton.cpp b/src/EasyButton.cpp index eef4384..2201144 100644 --- a/src/EasyButton.cpp +++ b/src/EasyButton.cpp @@ -1,7 +1,7 @@ /** * EasyButton.cpp * @author Evert Arias - * @version 2.0.0 + * @version 2.0.3 * @license MIT */ diff --git a/src/EasyButton.h b/src/EasyButton.h index f04fba7..6bfac87 100644 --- a/src/EasyButton.h +++ b/src/EasyButton.h @@ -1,7 +1,7 @@ /** * EasyButton.h * @author Evert Arias - * @version 2.0.0 + * @version 2.0.3 * @license MIT */ diff --git a/src/EasyButtonBase.cpp b/src/EasyButtonBase.cpp index f50ce76..c508eea 100644 --- a/src/EasyButtonBase.cpp +++ b/src/EasyButtonBase.cpp @@ -1,7 +1,7 @@ /** * EasyButtonBase.h * @author Evert Arias - * @version 2.0.0 + * @version 2.0.3 * @license MIT */ diff --git a/src/EasyButtonBase.h b/src/EasyButtonBase.h index 33a875a..6f6526b 100644 --- a/src/EasyButtonBase.h +++ b/src/EasyButtonBase.h @@ -1,7 +1,7 @@ /** * EasyButtonBase.h * @author Evert Arias - * @version 2.0.0 + * @version 2.0.3 * @license MIT */ diff --git a/src/EasyButtonTouch.cpp b/src/EasyButtonTouch.cpp index ecf4a7b..0cf9665 100644 --- a/src/EasyButtonTouch.cpp +++ b/src/EasyButtonTouch.cpp @@ -1,7 +1,7 @@ /** * EasyButtonTouch.cpp * @author Evert Arias, Gutierrez PS, Felix A. Epp - * @version 2.0.0 + * @version 2.0.3 * @license MIT */ diff --git a/src/EasyButtonTouch.h b/src/EasyButtonTouch.h index 88aef5a..b31c929 100644 --- a/src/EasyButtonTouch.h +++ b/src/EasyButtonTouch.h @@ -1,7 +1,7 @@ /** * EasyButtonTouch.h * @author Evert Arias, Gutierrez PS, Felix A. Epp - * @version 2.0.0 + * @version 2.0.3 * @license MIT */ diff --git a/src/EasyButtonVirtual.cpp b/src/EasyButtonVirtual.cpp index dc87e56..b0d57d2 100644 --- a/src/EasyButtonVirtual.cpp +++ b/src/EasyButtonVirtual.cpp @@ -1,7 +1,7 @@ /** * EasyButtonVirtual.h * @author Evert Arias, Jose Gabriel Companioni Benitez - * @version 2.0.0 + * @version 2.0.3 * @license MIT */ diff --git a/src/EasyButtonVirtual.h b/src/EasyButtonVirtual.h index 65ba4b4..4add431 100644 --- a/src/EasyButtonVirtual.h +++ b/src/EasyButtonVirtual.h @@ -1,7 +1,7 @@ /** * EasyButtonVirtual.h * @author Evert Arias, Jose Gabriel Companioni Benitez - * @version 2.0.0 + * @version 2.0.3 * @license MIT */ diff --git a/src/Sequence.cpp b/src/Sequence.cpp index 68a7b9f..ab91393 100644 --- a/src/Sequence.cpp +++ b/src/Sequence.cpp @@ -1,7 +1,7 @@ /** * Sequence.h * @author Evert Arias, Jose Gabriel Companioni Benitez - * @version 2.0.0 + * @version 2.0.3 * @license MIT */ diff --git a/src/Sequence.h b/src/Sequence.h index bdfe392..27c3723 100644 --- a/src/Sequence.h +++ b/src/Sequence.h @@ -1,7 +1,7 @@ /** * Sequence.h * @author Evert Arias, Jose Gabriel Companioni Benitez - * @version 2.0.0 + * @version 2.0.3 * @license MIT */