File tree Expand file tree Collapse file tree 4 files changed +15
-15
lines changed Expand file tree Collapse file tree 4 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 12
12
13
13
jobs :
14
14
PlatformIO-Check :
15
+ name : PIO - Checks
15
16
uses : sensirion/.github/.github/workflows/upt.platformio.check.yml@main
16
17
with :
17
18
pio-environment-list : ' ["selfManagedWifiUsage", "delegatedWifiUsage"]'
18
19
19
20
PlatformIO-Build :
21
+ name : PIO - Build
20
22
uses : sensirion/.github/.github/workflows/upt.platformio.build.yml@main
21
23
needs : PlatformIO-Check
22
24
with :
23
25
pio-environment-list : ' ["selfManagedWifiUsage", "delegatedWifiUsage"]'
24
26
25
- PlatformIO-Package :
26
- if : ${{ (github.ref_type != 'tag') && (github.ref_name == 'master') }}
27
+ PlatformIO-PackageAndPublish :
28
+ name : PIO - Package and Publish on Tag
29
+ if : ${{ (github.ref_type == 'tag') || (github.ref_name == 'main') }}
27
30
needs : PlatformIO-Build
28
31
uses : sensirion/.github/.github/workflows/upt.platformio.publish.yml@main
29
32
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
33
+ should-publish : ${{ github.ref_type == 'tag' }}
38
34
secrets :
39
35
pio-registry-token : ${{ secrets.PIO_MKTSW_TOKEN }}
Original file line number Diff line number Diff line change @@ -7,9 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
- ### 0.2.1
10
+ ## 0.3.0
11
+ ### Changed
12
+ - Moved to stable UPT Core 1.0.0
11
13
12
- - Updates to make it compile with arduino upt core 0.9
14
+ ## 0.2.1
15
+ ### Changed
16
+ - Refactor for compilation with arduino UPT core 0.9
13
17
14
18
## 0.1.0
15
19
Original file line number Diff line number Diff line change 1
1
name =Sensirion UPT MQTT Client
2
- version =0.2.1
2
+ version =0.3.0
3
3
author =Maximilian Paulsen, Sensirion AG
4
4
maintainer =Sensirion AG <sensirion.com>
5
5
sentence =Send UPT Measurements to an MQTT broker
@@ -8,4 +8,4 @@ category=Communication
8
8
url =https://github.com/Sensirion/arduino-upt-mqtt-client
9
9
architectures =esp32
10
10
includes =MqttMailingService.h
11
- depends =Sensirion UPT Core (=0.9.4 )
11
+ depends =Sensirion UPT Core (>=1.0.0 && <2.0.0 )
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ extra_scripts =
23
23
pre:py_scripts/make_cpp_files.py
24
24
lib_deps =
25
25
${common.lib_deps_builtin}
26
- sensirion/Sensirion UPT Core@^0.9.4
26
+ sensirion/Sensirion UPT Core@^1.0.0
27
27
lib_extra_dirs =
28
28
${PROJECT_DIR}/src/*
29
29
check_tool = cppcheck, clangtidy
You can’t perform that action at this time.
0 commit comments