Skip to content

Commit e1482bf

Browse files
committed
Bump version, update changelog
Signed-off-by: Sara Damiano <[email protected]>
1 parent 2a31203 commit e1482bf

File tree

6 files changed

+29
-10
lines changed

6 files changed

+29
-10
lines changed

ChangeLog.md

+24-5
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,37 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1212

1313
### Changed
1414

15+
### Added
16+
17+
### Removed
18+
19+
### Fixed
20+
21+
***
22+
23+
## [0.36.0]
24+
25+
### Changed
26+
1527
- Applied markdown lint to markdown files
1628
- Bumped TinyGSM dependency
1729
- Changed datatypes for modem voltage outputs.
1830
- Switched from Soligen fork of ADS1115 library to the standard Adafruit version.
31+
- Rearranged documation of examples
32+
- Consistently apply all pre-processor `defined` checks with function-like syntax
33+
- Consistently check for both `__AVR__` and `ARDUINO_ARCH_AVR` in all cases.
34+
- Not all AVR boards defin `__AVR__` within the PlatformIO system, which was confusing the SCons preprocessor.
35+
- Modified implementation of initial short logging intervals.
36+
- Allow non-sleep before returing from testing or logging functions.
37+
- Modified returns of modem variables from uint's to int's for consistency with the latest version of TinyGSM.
38+
- Add pre-processor macro for number of times to attempt to update the clock.
1939

2040
### Added
2141

2242
- Added support for Yosemitech Y513 Blue Green Algae Sensor thanks to @aufdenkampe
2343
- Added support for Alphasense CO2 Sensor thanks to @aufdenkampe
24-
25-
### Removed
26-
27-
### Fixed
44+
- Added support for Turner Turbidity Plus thanks to @mbarneytu
45+
- Added complete paramter documentation where it was missing.
2846

2947
***
3048

@@ -946,7 +964,8 @@ Our first release of the modular sensors library to support easily logging data
946964

947965
***
948966

949-
[Unreleased]: https://github.com/EnviroDIY/ModularSensors/compare/v0.35.1...HEAD
967+
[Unreleased]: https://github.com/EnviroDIY/ModularSensors/compare/v0.36.0...HEAD
968+
[0.36.0]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.36.0
950969
[0.35.1]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.35.1
951970
[0.35.0]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.35.0
952971
[0.34.0]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.34.0

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.35.1
1+
0.36.0

docs/Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = ModularSensors
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = 0.35.1
51+
PROJECT_NUMBER = 0.36.0
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# 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.35.1",
3+
"version": "0.36.0",
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.35.1
2+
version=0.36.0
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
@@ -19,7 +19,7 @@
1919
* A pre-release version will always be indicated as slightly ahead of the
2020
* EnviroDIY branch that it is based on.
2121
*/
22-
#define MODULAR_SENSORS_VERSION "0.35.1"
22+
#define MODULAR_SENSORS_VERSION "0.36.0"
2323

2424
// To support interrupts
2525
#include "ModSensorInterrupts.h"

0 commit comments

Comments
 (0)