diff --git a/changes.txt b/changes.txt index d74e7e4..0b97b92 100644 --- a/changes.txt +++ b/changes.txt @@ -1,10 +1,6 @@ -- Add changes to unreleased tag until we make a release. - -unreleased, v1.4.0 -- Removed: void PCD_Init(byte resetPowerDownPin); -- Removed: MFRC522(byte resetPowerDownPin); -- Changed default initialisation of SS pin with constants of arduino.h are not done anymore +unreleased, v1.4.1 - Replaced UINT8_MAX by UNUSED_PIN - Replaced default value NULL for pointer with correct nullptr - Added pin layout for wemos d1 mini @mmone @@ -18,6 +14,13 @@ unreleased, v1.4.0 - Fixed wrong var names in PICC_Select MFRC522.cpp @tuyethoa08041997 - Fixed hang PCD_Init() on non-arduino boards @heziegl - Fixed possible infinite loop PCD_Reset() @psgreco +- And many thanks to all other contributors + +13 Apr 2018, v1.4.0 +- Replaced UINT8_MAX by UNUSED_PIN @Rotzbua +- Fixed hang PCD_Init() on non-arduino boards @heziegl +- deprecate MIFARE_SetAccessBits @Rotzbua +- IMPORTANT: v1.4.X will be last version under license "unlicense" 22 Mar 2017, v1.3.6 - Added deprecate and compiler warnings @Rotzbua diff --git a/library.json b/library.json index dcb0711..09dfb1d 100644 --- a/library.json +++ b/library.json @@ -7,7 +7,7 @@ "type": "git", "url": "https://github.com/miguelbalboa/rfid.git" }, - "version": "1.3.6", + "version": "1.4.0", "exclude": "doc", "frameworks": "arduino", "platforms": ["atmelavr", "ststm32", "teensy", "espressif8266","samd"] diff --git a/library.properties b/library.properties index 9ab926a..8319776 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=MFRC522 -version=1.3.6 +version=1.4.0 author=GithubCommunity maintainer=miguelbalboa sentence=Arduino RFID Library for MFRC522 (SPI) diff --git a/src/MFRC522.h b/src/MFRC522.h index f462d02..b203051 100644 --- a/src/MFRC522.h +++ b/src/MFRC522.h @@ -416,6 +416,7 @@ public: void PICC_DumpMifareUltralightToSerial(); // Advanced functions for MIFARE + DEPRECATED_MSG("name will change in next version") void MIFARE_SetAccessBits(byte *accessBitBuffer, byte g0, byte g1, byte g2, byte g3); DEPRECATED_MSG("will move to extra class in next version") bool MIFARE_OpenUidBackdoor(bool logErrors);