Skip to content

Commit e97bad8

Browse files
authored
bump to v0.3.5 (microsoft#1196)
* update usb native * update changelog * fix ref tag for publishing * fix ref tag for publishing * change build to check version env var * fix version spelling * add {} to if in publish * change version check to regex * fix formatting * change to multiline run * add echo for ISPRODUCTION * add missing s to outputs * remove debugging echo
1 parent 595def8 commit e97bad8

File tree

4 files changed

+94
-53
lines changed

4 files changed

+94
-53
lines changed

.github/workflows/build.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,12 @@ jobs:
103103
tag: ${{ github.ref }}
104104
overwrite: true
105105
file_glob: true
106+
- name: check for production tag
107+
id: check-version
108+
run: |
109+
if [[ ${{ env.VERSION }} =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
110+
echo ::set-output name=ISPRODUCTION::true
111+
fi
106112
- name: publish
107-
if: github.ref == 'refs/tags/[0-9].[0-9].[0-9]'
113+
if: steps.check-version.outputs.ISPRODUCTION == 'true'
108114
run: vsce publish -p ${{ secrets.VSCE_TOKEN }}

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## Version 0.3.5
5+
6+
- Release date: November 22, 2020
7+
8+
### Fixes
9+
- Update to node-usb-native 0.0.19
10+
411
## Version 0.3.4
512

613
- Release date: November 22, 2020

package-lock.json

+77-49
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
"name": "vscode-arduino",
33
"displayName": "Arduino",
44
"description": "Arduino for Visual Studio Code",
5-
"version": "0.3.4",
5+
"version": "0.3.5",
66
"publisher": "vsciot-vscode",
77
"aiKey": "83dd2c27-6594-41d3-85a9-bdb22070eb42",
88
"preview": true,
99
"engines": {
10-
"vscode": "^1.50.0"
10+
"vscode": "^1.53.0"
1111
},
1212
"icon": "images/arduino.png",
1313
"license": "SEE LICENSE IN LICENSE.txt",
@@ -582,7 +582,7 @@
582582
"glob": "^7.1.1",
583583
"iconv-lite": "^0.4.18",
584584
"impor": "^0.1.1",
585-
"node-usb-native": "^0.0.18",
585+
"node-usb-native": "^0.0.19",
586586
"properties": "^1.2.1",
587587
"uuid": "^3.0.1",
588588
"vscode-extension-telemetry": "0.1.6",

0 commit comments

Comments
 (0)