Skip to content

Commit fcbbf5d

Browse files
authored
Merge pull request #82 from evert-arias/dev
Increment version
2 parents bf048af + 0fbf977 commit fcbbf5d

12 files changed

+12
-12
lines changed

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "EasyButton",
33
"keywords": "IO, button, sensor, arduino",
44
"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.",
5-
"version": "2.0.1",
5+
"version": "2.0.3",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/evert-arias/EasyButton"

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=EasyButton
2-
version=2.0.2
2+
version=2.0.3
33
author=Evert Arias <[email protected]>
44
maintainer=Evert Arias <[email protected]>
55
sentence=Arduino library for debouncing momentary contact switches, detect press, release, long press and sequences with event definitions and callbacks.

src/EasyButton.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* EasyButton.cpp
33
* @author Evert Arias
4-
* @version 2.0.0
4+
* @version 2.0.3
55
* @license MIT
66
*/
77

src/EasyButton.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* EasyButton.h
33
* @author Evert Arias
4-
* @version 2.0.0
4+
* @version 2.0.3
55
* @license MIT
66
*/
77

src/EasyButtonBase.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* EasyButtonBase.h
33
* @author Evert Arias
4-
* @version 2.0.0
4+
* @version 2.0.3
55
* @license MIT
66
*/
77

src/EasyButtonBase.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* EasyButtonBase.h
33
* @author Evert Arias
4-
* @version 2.0.0
4+
* @version 2.0.3
55
* @license MIT
66
*/
77

src/EasyButtonTouch.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* EasyButtonTouch.cpp
33
* @author Evert Arias, Gutierrez PS, Felix A. Epp
4-
* @version 2.0.0
4+
* @version 2.0.3
55
* @license MIT
66
*/
77

src/EasyButtonTouch.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* EasyButtonTouch.h
33
* @author Evert Arias, Gutierrez PS, Felix A. Epp
4-
* @version 2.0.0
4+
* @version 2.0.3
55
* @license MIT
66
*/
77

src/EasyButtonVirtual.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* EasyButtonVirtual.h
33
* @author Evert Arias, Jose Gabriel Companioni Benitez
4-
* @version 2.0.0
4+
* @version 2.0.3
55
* @license MIT
66
*/
77

src/EasyButtonVirtual.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* EasyButtonVirtual.h
33
* @author Evert Arias, Jose Gabriel Companioni Benitez
4-
* @version 2.0.0
4+
* @version 2.0.3
55
* @license MIT
66
*/
77

src/Sequence.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Sequence.h
33
* @author Evert Arias, Jose Gabriel Companioni Benitez
4-
* @version 2.0.0
4+
* @version 2.0.3
55
* @license MIT
66
*/
77

src/Sequence.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Sequence.h
33
* @author Evert Arias, Jose Gabriel Companioni Benitez
4-
* @version 2.0.0
4+
* @version 2.0.3
55
* @license MIT
66
*/
77

0 commit comments

Comments
 (0)