Bumped version to 3.0.1 since we have a unauthorized 3.0.0 version in the Arduino Library Manager.

This commit is contained in:
Armin 2021-02-08 17:13:30 +01:00
parent eb6f09459b
commit 9a43cf7b29
4 changed files with 9 additions and 5 deletions

View File

@ -1,7 +1,10 @@
## 2.9.0 2021/01
## 3.0.2
## 3.0.0 + 3.0.1 2021/02
- Added SendRaw with byte data.
- Fixed resume bug if irparams.rawlen >= RAW_BUFFER_LENGTH. Thanks to Iosif Peterfi
- Added `dumpPronto(String *aString, unsigned int frequency)` with String object as argument. Thanks to Iosif Peterfi
- Removed Test2 example.
- Fixed swapped cases in `getProtocolString()`. Thanks to Jim-2249
- Added compile option `IR_INPUT_IS_ACTIVE_HIGH`. Thanks to Jim-2249
- Corrected template. Thanks to Jim-2249
@ -9,7 +12,8 @@
- Added compatibility with tone for AVR's.
- New TinyIRreceiver does not require a timer.
- New MinimalReceiver and IRDispatcherDemo examples.
- Removed Test2 example.
- Added TinyCore 32 / ATtiny3217 support.
- Added Apple protocol.
## 2.8.1 2020/10
- Fixed bug in Sony decode introduced in 2.8.0.

View File

@ -7,7 +7,7 @@
"type": "git",
"url": "https://github.com/z3t0/Arduino-IRremote.git"
},
"version": "3.0.0",
"version": "3.0.1",
"frameworks": "arduino",
"platforms": "atmelavr",
"authors" :

View File

@ -1,5 +1,5 @@
name=IRremote
version=3.0.0
version=3.0.1
author=shirriff, z3t0 <zetoslab@gmail.com>, ArminJo
maintainer=Armin Joachimsmeyer <armin.arduino@gmail.com>
sentence=Send and receive infrared signals with multiple protocols

View File

@ -36,7 +36,7 @@
#define RAW_BUFFER_LENGTH 101 ///< Maximum length of raw duration buffer. Must be odd! 101 supports up to 48 bit codings.
#endif
#define VERSION_IRREMOTE "3.0.0"
#define VERSION_IRREMOTE "3.0.1"
#define VERSION_IRREMOTE_MAJOR 3
#define VERSION_IRREMOTE_MINOR 0
/*