Skip to content

Commit 2c69677

Browse files
committed
Missed a comment
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
1 parent d8bd354 commit 2c69677

File tree

8 files changed

+11
-14
lines changed

8 files changed

+11
-14
lines changed

.github/workflows/build_menu.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,6 @@ jobs:
172172
- modemFlag: BUILD_MODEM_SIM7080
173173
sensorFlag: BUILD_SENSOR_DOPTO
174174
publisherFlag: BUILD_PUB_MMW
175-
- modemFlag: BUILD_MODEM_SIM7080
176-
sensorFlag: BUILD_SENSOR_DHT
177-
publisherFlag: BUILD_PUB_MMW
178175
- modemFlag: BUILD_MODEM_SIM7080
179176
sensorFlag: NO_SENSORS
180177
publisherFlag: BUILD_PUB_DREAMHOST

ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
****
8-
## v0.31.1 (2021-11-03) Fix build without AOSong DHT
8+
## v0.31.2 (2021-11-03) Fix build without AOSong DHT
99
### Bug fixes
1010
- Fixed build matrix to remove DHT
1111

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.31.1
1+
v0.31.2

docs/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = ModularSensors
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 0.31.1
41+
PROJECT_NUMBER = 0.31.2
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

examples/menu_a_la_carte/menu_a_la_carte.ino

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2208,11 +2208,11 @@ Variable* variableList[] = {
22082208
am2315Humid,
22092209
am2315Temp,
22102210
#endif
2211-
#if defined BUILD_SENSOR_DHT
2212-
dhtHumid,
2213-
dhtTemp,
2214-
dhtHI,
2215-
#endif
2211+
// #if defined BUILD_SENSOR_DHT
2212+
// dhtHumid,
2213+
// dhtTemp,
2214+
// dhtHI,
2215+
// #endif
22162216
#if defined BUILD_SENSOR_SQ212
22172217
sq212PAR,
22182218
sq212voltage,

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "EnviroDIY_ModularSensors",
3-
"version": "0.31.1",
3+
"version": "0.31.2",
44
"description": "A library that allows access to multiple sensors through a unified interface. This allows the user to simply access many sensors to log the data or send the data to data repositories like the EnviroDIY data portal.",
55
"keywords": "modular, sensor, sensors, datalogger, logger, low power, sleeping, EnviroDIY, ModularSensors, Mayfly, WikiWatershed, Monitor My Watershed, ThingSpeak",
66
"platforms": "atmelavr, atmelsam",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=EnviroDIY_ModularSensors
2-
version=0.31.1
2+
version=0.31.2
33
author=Sara Damiano <sdamiano@stroudcenter.org>, Shannon Hicks <shicks@stroudcenter.org>
44
maintainer=Sara Damiano <sdamiano@stroudcenter.org>
55
sentence=A library that allows access to multiple sensors through a unified interface.

src/ModularSensors.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* @brief The current library version number
1616
*/
17-
#define MODULAR_SENSORS_VERSION "0.31.1"
17+
#define MODULAR_SENSORS_VERSION "0.31.2"
1818

1919
// To get all of the base classes for ModularSensors, include LoggerBase.
2020
// NOTE: Individual sensor definitions must be included separately.

0 commit comments

Comments
 (0)