Skip to content

Commit 03a7ac6

Browse files
committed
Merge branch 'develop' into example/gps-tracker
2 parents 29437fe + 5d2a571 commit 03a7ac6

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,11 @@
7474
# 1.2.2
7575

7676
No changes
77+
78+
# 1.3.0
79+
80+
# Fixes
81+
82+
* Update MCP9808 library name in library.properties dependency field
83+
* Update VEML3328 library name in library.properties dependency field
84+
* Update Jenkins pipeline with new arduino-lint configurations

Jenkinsfilek8s

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
stage('linter') {
5555
steps {
56-
sh 'arduino-lint --compliance strict'
56+
sh 'arduino-lint --library-manager update --compliance strict'
5757
script {
5858
env.DEP_ERROR = getDependencyError()
5959
if (env.DEP_ERROR != '') {
@@ -147,6 +147,5 @@
147147
}
148148

149149
String getDependencyError() {
150-
return sh(script: "! arduino-lint --compliance strict --format json | grep LP048", returnStdout: true)?.trim()
151-
// return sh(script: "! arduino-lint --compliance strict --format json | grep LP048", returnStdout: true)?.trim()
150+
return sh(script: "! arduino-lint --library-manager update --compliance strict --format json | grep LP048", returnStdout: true)?.trim()
152151
}

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name=AVR-IoT-Cellular
2-
version=1.2.2
2+
version=1.3.0
33
author=Microchip Technology Inc. <simen.gangstad@microchip.com>
44
maintainer=Microchip Technology Inc. <simen.gangstad@microchip.com>
55
sentence=Library for the AVR-IoT Cellular Mini Board
66
paragraph=Supports HTTP(S), MQTT(S), Low Power and more. Dependent on AVR-IoT MCP9808, AVR-IoT VEML3328 and DxCore
77
category=Communication
88
url=https://iot.microchip.com/docs
99
architectures=*
10-
depends=AVR-IoT MCP9808, veml3328
10+
depends=AVR-IoT MCP9808, AVR-IoT VEML3328
1111
precompiled=true

0 commit comments

Comments
 (0)