Skip to content

Commit b1e1b84

Browse files
authored
Merge pull request #26 from Sensirion/updateUPTcore
Update UPT Core and ready for release
2 parents 52bf89f + e4900ec commit b1e1b84

File tree

5 files changed

+11
-14
lines changed

5 files changed

+11
-14
lines changed

.github/workflows/arduino.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ jobs:
1111
with:
1212
expect-arduino-examples: true
1313
lint-lib-manager-check: update
14-
dependency-list: "[{'name': 'Sensirion Core'}, {'name': 'Sensirion UPT Core', 'version': '0.9.4'}, {'name': 'Sensirion I2C SCD4x'}, {'name': 'Sensirion I2C SFA3x'}, {'name': 'Sensirion I2C SVM4x'}, {'name': 'Sensirion I2C SHT4x'}, {'name': 'Sensirion I2C SEN5X'}, {'name': 'Sensirion I2C SCD30'}, {'name': 'Sensirion I2C SGP41'}, {'name': 'Sensirion I2C STC3x'}, {'name': 'Sensirion I2C SEN66'}, {'name': 'Sensirion I2C STCC4'}, {'source-path': './'}]"
14+
dependency-list: "[{'name': 'Sensirion Core'}, {'name': 'Sensirion UPT Core', 'version': '1.0.0'}, {'name': 'Sensirion I2C SCD4x'}, {'name': 'Sensirion I2C SFA3x'}, {'name': 'Sensirion I2C SVM4x'}, {'name': 'Sensirion I2C SHT4x'}, {'name': 'Sensirion I2C SEN5X'}, {'name': 'Sensirion I2C SCD30'}, {'name': 'Sensirion I2C SGP41'}, {'name': 'Sensirion I2C STC3x'}, {'name': 'Sensirion I2C SEN66'}, {'name': 'Sensirion I2C STCC4'}, {'source-path': './'}]"

.github/workflows/platformio.yml

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

25-
PlatformIO-Package:
26-
if: ${{ (github.ref_type != 'tag') && (github.ref_name == 'master') }}
25+
PlatformIO-PackageAndPublish:
26+
name: PlatformIO - Package and Publish on Tag
27+
if: ${{ (github.ref_type == 'tag') || (github.ref_name == 'master') }}
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 }}
34+

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.0.0]
11+
1012
### Added
1113
- Introduced own namespace
1214

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Sensirion UPT I2C Auto Detection
2-
version=1.1.0
2+
version=2.0.0
33
author=Jonas Stolle, Maximilian Paulsen
44
maintainer=Sensirion AG <sensirion.com>
55
sentence=Automatically detects Sensirion Sensors on an I2C bus and reads out measurement data.
@@ -8,4 +8,4 @@ category=Sensors
88
architectures=esp32
99
url=https://github.com/Sensirion/arduino-upt-i2c-auto-detection
1010
includes=Sensirion_upt_i2c_auto_detection.h
11-
depends=Sensirion Core, Sensirion UPT Core (=0.9.4), Sensirion I2C SCD4x, Sensirion I2C SFA3x, Sensirion I2C SVM4x, Sensirion I2C SHT4x, Sensirion I2C SEN5X, Sensirion I2C SCD30, Sensirion I2C SGP41, Sensirion I2C STC3x, Sensirion I2C SEN66, Sensirion I2C STCC4
11+
depends=Sensirion Core, Sensirion UPT Core (>=1.0.0 && <2.0.0), Sensirion I2C SCD4x, Sensirion I2C SFA3x, Sensirion I2C SVM4x, Sensirion I2C SHT4x, Sensirion I2C SEN5X, Sensirion I2C SCD30, Sensirion I2C SGP41, Sensirion I2C STC3x, Sensirion I2C SEN66, Sensirion I2C STCC4

platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ default_envs = basicUsage
1414
[common]
1515
lib_deps_external =
1616
Sensirion/Sensirion Core@0.7.1
17-
Sensirion/Sensirion UPT Core@0.9.4
17+
Sensirion/Sensirion UPT Core@^1.0.0
1818
Sensirion/Sensirion I2C SHT4x@1.1.2
1919
Sensirion/Sensirion I2C SCD4x@1.0.0
2020
Sensirion/Sensirion I2C SFA3x@1.0.0

0 commit comments

Comments
 (0)