Skip to content

Commit 87d7661

Browse files
committed
1.0.1 DHTstable
1 parent 4f22980 commit 87d7661

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

libraries/DHTstable/DHTStable.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
//
22
// FILE: DHTStable.cpp
33
// AUTHOR: Rob Tillaart
4-
// VERSION: 0.2.9
4+
// VERSION: 1.0.1
55
// PURPOSE: DHT Temperature & Humidity Sensor library for Arduino
66
// URL: https://github.com/RobTillaart/DHTstable
77
//
88
// HISTORY:
99

10+
// 1.0.1 2021-06-01 change architecture to fix incompatible flag.
1011
// 1.0.0 2021-05-26 rename files and class to DHTStable to fix incompatible flag.
1112
// changed temperature and humidity to private
1213
// breaking change!

libraries/DHTstable/DHTStable.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// FILE: DHTStable.h
44
// AUTHOR: Rob Tillaart
5-
// VERSION: 1.0.0
5+
// VERSION: 1.0.1
66
// PURPOSE: DHT Temperature & Humidity Sensor library for Arduino
77
// URL: https://github.com/RobTillaart/DHTstable
88
//
@@ -13,7 +13,7 @@
1313

1414
#include "Arduino.h"
1515

16-
#define DHTSTABLE_LIB_VERSION (F("1.0.0 - DHTStable"))
16+
#define DHTSTABLE_LIB_VERSION (F("1.0.1 - DHTStable"))
1717

1818

1919
const int DHTLIB_OK = 0;

libraries/DHTstable/library.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"type": "git",
1616
"url": "https://github.com/RobTillaart/DHTstable.git"
1717
},
18-
"version": "1.0.0",
18+
"version": "1.0.1",
1919
"license": "MIT",
2020
"frameworks": "arduino",
21-
"platforms": "avr"
21+
"platforms": "*"
2222
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name=DHTStable
2-
version=1.0.0
2+
version=1.0.1
33
author=Rob Tillaart <[email protected]>
44
maintainer=Rob Tillaart <[email protected]>
55
sentence=Stable version of library for DHT Temperature & Humidity Sensor
66
paragraph=DHT11 and DHT22 and equivalent.
77
category=Sensors
88
url=https://github.com/RobTillaart/DHTstable
9-
architectures=avr
9+
architectures=*
1010
includes=DHTStable.h
1111
depends=

0 commit comments

Comments
 (0)