Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 0b60f1f

Browse files
committed
Merge branch 'master' into pre-release-v0.4.0
2 parents e044711 + e97bad8 commit 0b60f1f

File tree

4 files changed

+91
-51
lines changed

4 files changed

+91
-51
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

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ All notable changes to this project will be documented in this file.
1111
- Autogenerate c_cpp_properties.json with all complier arguments and libraries for IntelliSense
1212
- Detects available programmers for selected board
1313
- Unifies all build commands under a single function
14+
## Version 0.3.5
15+
16+
- Release date: November 22, 2020
17+
18+
### Fixes
19+
- Update to node-usb-native 0.0.19
1420

1521
## Version 0.3.4
1622

package-lock.json

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

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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",
@@ -611,7 +611,7 @@
611611
"glob": "^7.1.1",
612612
"iconv-lite": "^0.4.18",
613613
"impor": "^0.1.1",
614-
"node-usb-native": "^0.0.18",
614+
"node-usb-native": "^0.0.19",
615615
"properties": "^1.2.1",
616616
"uuid": "^3.0.1",
617617
"vscode-extension-telemetry": "0.1.6",

0 commit comments

Comments
 (0)