Skip to content

Commit e62672f

Browse files
committed
bump version, update changelog
Signed-off-by: Sara Damiano <[email protected]>
1 parent afc5960 commit e62672f

File tree

6 files changed

+25
-7
lines changed

6 files changed

+25
-7
lines changed

ChangeLog.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313
### Changed
1414

1515
### Added
16-
- Added support for Sensirion SHT4x sensors.
16+
17+
### Removed
18+
19+
### Fixed
20+
21+
***
22+
23+
24+
## [0.33.1]
25+
26+
### Changed
27+
28+
### Added
29+
- Added a typedef and header for the ESP32
30+
- This is just another name to the ESP8266 class to help any who don't know they're identical for our purposes.
31+
- **Example:** Created a new DRWI wifi example for workshop.
32+
1733
### Removed
1834

1935
### Fixed
@@ -717,7 +733,9 @@ Our first release of the modular sensors library to support easily logging data
717733

718734
***
719735

720-
[Unreleased]: https://github.com/EnviroDIY/ModularSensors/compare/v0.32.2...HEAD
736+
[Unreleased]: https://github.com/EnviroDIY/ModularSensors/compare/v0.33.1...HEAD
737+
[0.33.1]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.33.1
738+
[0.33.0]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.33.0
721739
[0.32.2]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.32.2
722740
[0.32.0]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.32.0
723741
[0.31.2]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.31.2

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.33.0
1+
0.33.1

docs/Doxyfile

+1-1
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.33.0
41+
PROJECT_NUMBER = 0.33.1
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

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "EnviroDIY_ModularSensors",
3-
"version": "0.33.0",
3+
"version": "0.33.1",
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ModularSensors
2-
version=0.33.0
2+
version=0.33.1
33
author=Sara Damiano <[email protected]>, Shannon Hicks <[email protected]>
44
maintainer=Sara Damiano <[email protected]>
55
sentence=A library that allows access to multiple sensors through a unified interface.

src/ModularSensors.h

+1-1
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.33.0"
17+
#define MODULAR_SENSORS_VERSION "0.33.1"
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)