Skip to content

Commit

Permalink
Merge pull request #82 from evert-arias/dev
Browse files Browse the repository at this point in the history
Increment version
  • Loading branch information
evert-arias authored Jul 4, 2023
2 parents bf048af + 0fbf977 commit fcbbf5d
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
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=EasyButton
version=2.0.2
version=2.0.3
author=Evert Arias <[email protected]>
maintainer=Evert Arias <[email protected]>
sentence=Arduino library for debouncing momentary contact switches, detect press, release, long press and sequences with event definitions and callbacks.
Expand Down
2 changes: 1 addition & 1 deletion src/EasyButton.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* EasyButton.cpp
* @author Evert Arias
* @version 2.0.0
* @version 2.0.3
* @license MIT
*/

Expand Down
2 changes: 1 addition & 1 deletion src/EasyButton.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* EasyButton.h
* @author Evert Arias
* @version 2.0.0
* @version 2.0.3
* @license MIT
*/

Expand Down
2 changes: 1 addition & 1 deletion src/EasyButtonBase.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* EasyButtonBase.h
* @author Evert Arias
* @version 2.0.0
* @version 2.0.3
* @license MIT
*/

Expand Down
2 changes: 1 addition & 1 deletion src/EasyButtonBase.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* EasyButtonBase.h
* @author Evert Arias
* @version 2.0.0
* @version 2.0.3
* @license MIT
*/

Expand Down
2 changes: 1 addition & 1 deletion src/EasyButtonTouch.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* EasyButtonTouch.cpp
* @author Evert Arias, Gutierrez PS, Felix A. Epp
* @version 2.0.0
* @version 2.0.3
* @license MIT
*/

Expand Down
2 changes: 1 addition & 1 deletion src/EasyButtonTouch.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* EasyButtonTouch.h
* @author Evert Arias, Gutierrez PS, Felix A. Epp
* @version 2.0.0
* @version 2.0.3
* @license MIT
*/

Expand Down
2 changes: 1 addition & 1 deletion src/EasyButtonVirtual.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* EasyButtonVirtual.h
* @author Evert Arias, Jose Gabriel Companioni Benitez
* @version 2.0.0
* @version 2.0.3
* @license MIT
*/

Expand Down
2 changes: 1 addition & 1 deletion src/EasyButtonVirtual.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* EasyButtonVirtual.h
* @author Evert Arias, Jose Gabriel Companioni Benitez
* @version 2.0.0
* @version 2.0.3
* @license MIT
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Sequence.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Sequence.h
* @author Evert Arias, Jose Gabriel Companioni Benitez
* @version 2.0.0
* @version 2.0.3
* @license MIT
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Sequence.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Sequence.h
* @author Evert Arias, Jose Gabriel Companioni Benitez
* @version 2.0.0
* @version 2.0.3
* @license MIT
*/

Expand Down

0 comments on commit fcbbf5d

Please sign in to comment.