diff --git a/.github/workflows/prepare_release.yaml b/.github/workflows/prepare_release.yaml index c7b2f8254..19ebe7a67 100644 --- a/.github/workflows/prepare_release.yaml +++ b/.github/workflows/prepare_release.yaml @@ -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 diff --git a/ChangeLog.md b/ChangeLog.md index 02271a1b4..70df4813f 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -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 @@ -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`. @@ -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. @@ -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 diff --git a/VERSION b/VERSION index 8df3f4592..c9ec1d542 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.33.1 +0.33.2 diff --git a/docs/Doxyfile b/docs/Doxyfile index ce455951a..2f10daaeb 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -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 diff --git a/library.json b/library.json index 7a353a7f2..b6a5c1262 100644 --- a/library.json +++ b/library.json @@ -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", diff --git a/library.properties b/library.properties index 8ef077b77..b0577cf24 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=ModularSensors -version=0.33.1 +version=0.33.2 author=Sara Damiano , Shannon Hicks maintainer=Sara Damiano sentence=A library that allows access to multiple sensors through a unified interface. diff --git a/src/ModularSensors.h b/src/ModularSensors.h index 94fa718fa..5fe8ea7c5 100644 --- a/src/ModularSensors.h +++ b/src/ModularSensors.h @@ -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.