Skip to content

Commit 7a1c63a

Browse files
committed
Fix for script to issue release
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org> Fix broken yaml Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
1 parent e62672f commit 7a1c63a

File tree

7 files changed

+22
-9
lines changed

7 files changed

+22
-9
lines changed

.github/workflows/prepare_release.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@ jobs:
4343
chmod +x continuous_integration/install-deps-platformio.sh
4444
sh continuous_integration/install-deps-platformio.sh
4545
46+
- name: Install ModularSensors from the master branch
47+
run: |
48+
pio lib -g install -f https://github.com/EnviroDIY/ModularSensors
49+
pio lib show EnviroDIY_ModularSensors
50+
4651
# Uninstall graphics libraries from Adafruit
4752
- name: Uninstall Adafruit GFX Library library
4853
continue-on-error: true

ChangeLog.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121
***
2222

2323

24-
## [0.33.1]
24+
## [0.33.2]
25+
26+
### Fixed
27+
- Fixed script to install and zip libraries for a release
28+
***
29+
30+
31+
## [0.33.1] - 2022-04-11
2532

2633
### Changed
2734

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

3744
***
3845

39-
## [0.33.0]
46+
## [0.33.0] - 2022-04-01
4047

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

8693
***
8794

88-
## [0.32.2]
95+
## [0.32.2] - 2021-11-23
8996

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

734741
***
735742

736-
[Unreleased]: https://github.com/EnviroDIY/ModularSensors/compare/v0.33.1...HEAD
743+
[Unreleased]: https://github.com/EnviroDIY/ModularSensors/compare/v0.33.2...HEAD
744+
[0.33.2]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.33.2
737745
[0.33.1]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.33.1
738746
[0.33.0]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.33.0
739747
[0.32.2]: https://github.com/EnviroDIY/ModularSensors/releases/tag/v0.32.2

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.33.1
1+
0.33.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.33.1
41+
PROJECT_NUMBER = 0.33.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

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.33.1",
3+
"version": "0.33.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=ModularSensors
2-
version=0.33.1
2+
version=0.33.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.33.1"
17+
#define MODULAR_SENSORS_VERSION "0.33.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)