Skip to content

Commit

Permalink
Fix for script to issue release
Browse files Browse the repository at this point in the history
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>

Fix broken yaml

Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
  • Loading branch information
SRGDamia1 committed Apr 12, 2022
1 parent e62672f commit 7a1c63a
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/prepare_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ jobs:
chmod +x continuous_integration/install-deps-platformio.sh
sh continuous_integration/install-deps-platformio.sh
- name: Install ModularSensors from the master branch
run: |
pio lib -g install -f https://github.com/EnviroDIY/ModularSensors
pio lib show EnviroDIY_ModularSensors
# Uninstall graphics libraries from Adafruit
- name: Uninstall Adafruit GFX Library library
continue-on-error: true
Expand Down
16 changes: 12 additions & 4 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
***


## [0.33.1]
## [0.33.2]

### Fixed
- Fixed script to install and zip libraries for a release
***


## [0.33.1] - 2022-04-11

### Changed

Expand All @@ -36,7 +43,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

***

## [0.33.0]
## [0.33.0] - 2022-04-01

### Changed
- **Breaking:** Renamed the static `markedEpochTime` variable to `markedLocalEpochTime`.
Expand Down Expand Up @@ -85,7 +92,7 @@ These are *not* breaking changes at this time; the old class names are still usa

***

## [0.32.2]
## [0.32.2] - 2021-11-23

### Changed
- Restructured SDI-12 slightly to break out the start measurement functionality into a new function.
Expand Down Expand Up @@ -733,7 +740,8 @@ Our first release of the modular sensors library to support easily logging data

***

[Unreleased]: https://github.com/EnviroDIY/ModularSensors/compare/v0.33.1...HEAD
[Unreleased]: https://github.com/EnviroDIY/ModularSensors/compare/v0.33.2...HEAD
[0.33.2]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.33.2
[0.33.1]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.33.1
[0.33.0]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.33.0
[0.32.2]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.32.2
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.33.1
0.33.2
2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = ModularSensors
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.33.1
PROJECT_NUMBER = 0.33.2

# 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.33.1",
"version": "0.33.2",
"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.33.1
version=0.33.2
author=Sara Damiano <sdamiano@stroudcenter.org>, Shannon Hicks <shicks@stroudcenter.org>
maintainer=Sara Damiano <sdamiano@stroudcenter.org>
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 @@ -14,7 +14,7 @@
/**
* @brief The current library version number
*/
#define MODULAR_SENSORS_VERSION "0.33.1"
#define MODULAR_SENSORS_VERSION "0.33.2"

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

0 comments on commit 7a1c63a

Please sign in to comment.