diff --git a/README.md b/README.md index 7e89b3c..9be7301 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.2` 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.0.3` 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.2" + pio pkg install --library "MaffooClock/ESP32RotaryEncoder@^1.0.3" ``` #### Arduino IDE diff --git a/library.json b/library.json index 0a17d89..6e53c0e 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.2", + "version": "1.0.3", "authors": [ { "name": "Matthew Clark", diff --git a/library.properties b/library.properties index f513211..3042521 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=ESP32RotaryEncoder -version=1.0.2 +version=1.0.3 author=Matthew Clark maintainer=Matthew Clark sentence=Use a rotary encoder with your ESP32 easily!