Skip to content

Commit cf79b71

Browse files
authored
Merge pull request #10 from Sensirion/r0.3
v0.3
2 parents 3c9025e + 6bebbb4 commit cf79b71

File tree

4 files changed

+12
-13
lines changed

4 files changed

+12
-13
lines changed

.github/workflows/platformio.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,12 @@ jobs:
2222
with:
2323
pio-environment-list: '["basicUsage", "infoPage"]'
2424

25-
PlatformIO-Package:
26-
if: ${{ (github.ref_type != 'tag') && (github.ref_name == 'master') }}
25+
PlatformIO-PackageAndPublish:
26+
name: PIO - Package and Publish on Tag
27+
if: ${{ (github.ref_type == 'tag') || (github.ref_name == 'main') }}
2728
needs: PlatformIO-Build
2829
uses: sensirion/.github/.github/workflows/upt.platformio.publish.yml@main
2930
with:
30-
should-publish: false
31-
32-
PlatformIO-Publish:
33-
uses: sensirion/.github/.github/workflows/upt.platformio.publish.yml@main
34-
if: github.ref_type == 'tag'
35-
needs: PlatformIO-Build
36-
with:
37-
should-publish: true
31+
should-publish: ${{ github.ref_type == 'tag' }}
3832
secrets:
3933
pio-registry-token: ${{ secrets.PIO_MKTSW_TOKEN }}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.0]
11+
12+
### Changed
13+
- Moved to stable UPT Core 1.0.0
14+
1015
## [0.2.2]
1116

1217
### Fixed

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Sensirion UPT Display
2-
version=0.2.2
2+
version=0.3.0
33
author=Maximilian Paulsen, Quentin Fisch
44
maintainer=Sensirion AG <sensirion.com>
55
sentence=Easily display UPT measurements on compatible hardware.
@@ -8,4 +8,4 @@ category=Display
88
architectures=esp32
99
url=https://github.com/Sensirion/arduino-upt-display
1010
includes=SensirionUptDisplay.h
11-
depends=Sensirion Core, Sensirion UPT Core (>=0.9.4), TFT_eSPI
11+
depends=Sensirion Core, Sensirion UPT Core (>=1.0.0 && <2.0.0), TFT_eSPI

platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ default_envs = basicUsage
1414
lib_deps_builtin =
1515
TFT_eSPI@^2.5.43
1616
lib_deps_external =
17-
Sensirion/Sensirion UPT Core@^0.9.5
17+
Sensirion/Sensirion UPT Core@^1.0.0
1818
basicusage_srcdir = ${PROJECT_DIR}/examples/basicUsage/
1919
infopage_srcdir = ${PROJECT_DIR}/examples/infoPage/
2020

0 commit comments

Comments
 (0)