From a269cc3cc5f599fcb4d338af18666ddbe4bda915 Mon Sep 17 00:00:00 2001 From: Lennart Hennigs Date: Mon, 19 Feb 2024 08:44:19 +0100 Subject: [PATCH] ready for 2.3.2. and 2024 --- LICENSE | 2 +- README.md | 2 +- library.json | 2 +- library.properties | 2 +- src/Button2.cpp | 2 +- src/Button2.h | 2 +- src/Hardware.h | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/LICENSE b/LICENSE index 6febe57..37a18ba 100755 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017-2022 Lennart Hennigs +Copyright (c) 2017-2024 Lennart Hennigs 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 f72816f..b70b571 100755 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Arduino/ESP library to simplify working with buttons. - Author: Lennart Hennigs () -- Copyright (C) 2017-2023 Lennart Hennigs. +- Copyright (C) 2017-2024 Lennart Hennigs. - Released under the MIT license. ## Description diff --git a/library.json b/library.json index 7508974..c5e2ed4 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "Button2", - "version": "2.3.1", + "version": "2.3.2", "keywords": "button", "description": "Arduino/ESP Library to simplify working with buttons. It allows you to use callback functions to track single, double, triple and long clicks. Alternatively, it provides function to use in your main loop(). The library also takes care of debouncing. Using this lib will reduce and simplify your source code significantly.", "homepage": "https://github.com/LennartHennigs/Button2", diff --git a/library.properties b/library.properties index d8b7915..fada3bd 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Button2 -version=2.3.1 +version=2.3.2 author=Lennart Hennigs maintainer=Lennart Hennigs sentence=Arduino/ESP library to simplify working with buttons. diff --git a/src/Button2.cpp b/src/Button2.cpp index c9484e1..684ca54 100755 --- a/src/Button2.cpp +++ b/src/Button2.cpp @@ -1,7 +1,7 @@ ///////////////////////////////////////////////////////////////// /* Button2.cpp - Arduino Library to simplify working with buttons. - Copyright (C) 2017-2023 Lennart Hennigs. + Copyright (C) 2017-2024 Lennart Hennigs. Released under the MIT license. */ ///////////////////////////////////////////////////////////////// diff --git a/src/Button2.h b/src/Button2.h index 17b05a8..76d4398 100755 --- a/src/Button2.h +++ b/src/Button2.h @@ -1,7 +1,7 @@ ///////////////////////////////////////////////////////////////// /* Button2.h - Arduino Library to simplify working with buttons. - Copyright (C) 2017-2023 Lennart Hennigs. + Copyright (C) 2017-2024 Lennart Hennigs. Released under the MIT license. */ diff --git a/src/Hardware.h b/src/Hardware.h index fad9386..47935ec 100644 --- a/src/Hardware.h +++ b/src/Hardware.h @@ -2,7 +2,7 @@ /* Hardware.h - Implements Arduino Hardware Abstraction Layer. Part or Button2 library for Arduino. - Copyright (C) 2017-2023 Lennart Hennigs. + Copyright (C) 2017-2024 Lennart Hennigs. Released under the MIT license. */ /////////////////////////////////////////////////////////////////