Skip to content
Merged

v0.3 #10

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 4 additions & 10 deletions .github/workflows/platformio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,12 @@ jobs:
with:
pio-environment-list: '["basicUsage", "infoPage"]'

PlatformIO-Package:
if: ${{ (github.ref_type != 'tag') && (github.ref_name == 'master') }}
PlatformIO-PackageAndPublish:
name: PIO - Package and Publish on Tag
if: ${{ (github.ref_type == 'tag') || (github.ref_name == 'main') }}
needs: PlatformIO-Build
uses: sensirion/.github/.github/workflows/upt.platformio.publish.yml@main
with:
should-publish: false

PlatformIO-Publish:
uses: sensirion/.github/.github/workflows/upt.platformio.publish.yml@main
if: github.ref_type == 'tag'
needs: PlatformIO-Build
with:
should-publish: true
should-publish: ${{ github.ref_type == 'tag' }}
secrets:
pio-registry-token: ${{ secrets.PIO_MKTSW_TOKEN }}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0]

### Changed
- Moved to stable UPT Core 1.0.0

## [0.2.2]

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Sensirion UPT Display
version=0.2.2
version=0.3.0
author=Maximilian Paulsen, Quentin Fisch
maintainer=Sensirion AG <sensirion.com>
sentence=Easily display UPT measurements on compatible hardware.
Expand All @@ -8,4 +8,4 @@ category=Display
architectures=esp32
url=https://github.com/Sensirion/arduino-upt-display
includes=SensirionUptDisplay.h
depends=Sensirion Core, Sensirion UPT Core (>=0.9.4), TFT_eSPI
depends=Sensirion Core, Sensirion UPT Core (>=1.0.0 && <2.0.0), TFT_eSPI
2 changes: 1 addition & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ default_envs = basicUsage
lib_deps_builtin =
TFT_eSPI@^2.5.43
lib_deps_external =
Sensirion/Sensirion UPT Core@^0.9.5
Sensirion/Sensirion UPT Core@^1.0.0
basicusage_srcdir = ${PROJECT_DIR}/examples/basicUsage/
infopage_srcdir = ${PROJECT_DIR}/examples/infoPage/

Expand Down
Loading