From 023dd476796eb641c200a2e85ffddfd5107be5d3 Mon Sep 17 00:00:00 2001 From: Matthew Clark Date: Wed, 1 Nov 2023 16:53:45 -0500 Subject: [PATCH] Bumping to v1.1.0 --- README.md | 4 ++-- library.json | 2 +- library.properties | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f041315..be722ef 100644 --- a/README.md +++ b/README.md @@ -33,12 +33,12 @@ There are a few ways, choose whichever you prefer (pick **one**, don't do all th - Search the [Library Registry](https://registry.platformio.org/search?t=library) for `MaffooClock/ESP32RotaryEncoder` and install it automatically. -- Edit your [platformio.ini](https://docs.platformio.org/en/latest/projectconf/index.html) file and add `MaffooClock/ESP32RotaryEncoder@^1.0.4` to your [`lib_deps`](https://docs.platformio.org/en/latest/projectconf/sections/env/options/library/lib_deps.html) stanza. +- Edit your [platformio.ini](https://docs.platformio.org/en/latest/projectconf/index.html) file and add `MaffooClock/ESP32RotaryEncoder@^1.1.0` to your [`lib_deps`](https://docs.platformio.org/en/latest/projectconf/sections/env/options/library/lib_deps.html) stanza. - Use the command line interface: ```shell cd MyProject - pio pkg install --library "MaffooClock/ESP32RotaryEncoder@^1.0.4" + pio pkg install --library "MaffooClock/ESP32RotaryEncoder@^1.1.0" ``` #### Arduino IDE diff --git a/library.json b/library.json index d52fa77..af2d8f5 100644 --- a/library.json +++ b/library.json @@ -2,7 +2,7 @@ "name": "ESP32RotaryEncoder", "keywords": "arduino, rotary encoder, button, gpio, interrupts", "description": "ESP32RotaryEncoder is a small library that makes implementing a rotary encoder on ESP32 easy. It uses interrupts for instant detection of knob turns or button presses without blocking or other delays.", - "version": "1.0.4", + "version": "1.1.0", "authors": [ { "name": "Matthew Clark", diff --git a/library.properties b/library.properties index c64fbf3..806a1f9 100644 --- a/library.properties +++ b/library.properties @@ -1,9 +1,9 @@ name=ESP32RotaryEncoder -version=1.0.4 +version=1.1.0 author=Matthew Clark maintainer=Matthew Clark sentence=Use a rotary encoder with your ESP32 easily! paragraph=This library uses interrupts for instant detection of knob turns or button presses (with software de-bounce) without blocking or other delays. category=Signal Input/Output url=https://github.com/MaffooClock/ESP32RotaryEncoder -architectures=esp32 \ No newline at end of file +architectures=esp32