Skip to content

Commit

Permalink
Bump version, update changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Sara Damiano <[email protected]>
  • Loading branch information
SRGDamia1 committed Sep 30, 2024
1 parent 2a31203 commit e1482bf
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 10 deletions.
29 changes: 24 additions & 5 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,37 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

### Changed

### Added

### Removed

### Fixed

***

## [0.36.0]

### Changed

- Applied markdown lint to markdown files
- Bumped TinyGSM dependency
- Changed datatypes for modem voltage outputs.
- Switched from Soligen fork of ADS1115 library to the standard Adafruit version.
- Rearranged documation of examples
- Consistently apply all pre-processor `defined` checks with function-like syntax
- Consistently check for both `__AVR__` and `ARDUINO_ARCH_AVR` in all cases.
- Not all AVR boards defin `__AVR__` within the PlatformIO system, which was confusing the SCons preprocessor.
- Modified implementation of initial short logging intervals.
- Allow non-sleep before returing from testing or logging functions.
- Modified returns of modem variables from uint's to int's for consistency with the latest version of TinyGSM.
- Add pre-processor macro for number of times to attempt to update the clock.

### Added

- Added support for Yosemitech Y513 Blue Green Algae Sensor thanks to @aufdenkampe
- Added support for Alphasense CO2 Sensor thanks to @aufdenkampe

### Removed

### Fixed
- Added support for Turner Turbidity Plus thanks to @mbarneytu
- Added complete paramter documentation where it was missing.

***

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

***

[Unreleased]: https://github.com/EnviroDIY/ModularSensors/compare/v0.35.1...HEAD
[Unreleased]: https://github.com/EnviroDIY/ModularSensors/compare/v0.36.0...HEAD
[0.36.0]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.36.0
[0.35.1]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.35.1
[0.35.0]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.35.0
[0.34.0]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.34.0
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.35.1
0.36.0
2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = ModularSensors
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.35.1
PROJECT_NUMBER = 0.36.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "EnviroDIY_ModularSensors",
"version": "0.35.1",
"version": "0.36.0",
"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.",
"keywords": "modular, sensor, sensors, datalogger, logger, low power, sleeping, EnviroDIY, ModularSensors, Mayfly, WikiWatershed, Monitor My Watershed, ThingSpeak",
"platforms": "atmelavr, atmelsam",
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=ModularSensors
version=0.35.1
version=0.36.0
author=Sara Damiano <[email protected]>, Shannon Hicks <[email protected]>
maintainer=Sara Damiano <[email protected]>
sentence=A library that allows access to multiple sensors through a unified interface.
Expand Down
2 changes: 1 addition & 1 deletion src/ModularSensors.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* A pre-release version will always be indicated as slightly ahead of the
* EnviroDIY branch that it is based on.
*/
#define MODULAR_SENSORS_VERSION "0.35.1"
#define MODULAR_SENSORS_VERSION "0.36.0"

// To support interrupts
#include "ModSensorInterrupts.h"
Expand Down

0 comments on commit e1482bf

Please sign in to comment.