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

Commit 0f8178a

Browse files
authored
Merge branch 'master' into master
2 parents 20baae9 + 1c76d64 commit 0f8178a

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,10 @@ before_install:
3838
fi
3939
# Arduino 1.8.7 has breaking change, Install board package and library will fail
4040
# https://github.com/arduino/Arduino/issues/8034
41+
# Arduino 1.8.8 has fixed issue 8034.
4142
- if [ $TRAVIS_OS_NAME == "osx" ]; then
4243
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)";
43-
brew cask install https://raw.githubusercontent.com/Homebrew/homebrew-cask/f908f03d37c981de93af8447b32641551d8bf74e/Casks/arduino.rb;
44+
brew cask install arduino;
4445
fi
4546

4647
install:

CHANGELOG.md

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

4+
## Version 0.2.24
5+
-Release date: December 11, 2018
6+
7+
### Added
8+
- Add debugging support for cmsis-dap with Keil Software vid [#634](https://github.com/Microsoft/vscode-arduino/pull/634)
9+
10+
### Changed
11+
- Save the selected programmer in Arduino.json [#714](https://github.com/Microsoft/vscode-arduino/pull/714)
12+
13+
### Fixed
14+
- Fix dependency issue [#716](https://github.com/Microsoft/vscode-arduino/pull/716)
15+
- Install latest arduino on Mac [#724](https://github.com/Microsoft/vscode-arduino/pull/724)
16+
17+
Special thanks to [Deqing Sun](https://github.com/DeqingSun), thank you for your contributions and feedbacks.
18+
419
## Version 0.2.23
520
-Release date: November 22, 2018
621

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Welcome to the Visual Studio Code extension for **Arduino** <sup>preview</sup> !
1717

1818
## Prerequisites
1919
The Arduino IDE is required. Please install it from the [download page](https://www.arduino.cc/en/main/software#download).
20-
- *Note:* Arduino IDE `1.8.7` has some breaking changes, causing board package and library installation failures. It is recommended to that you install version `1.8.6`
20+
- *Note:* Arduino IDE `1.8.7` has some breaking changes, causing board package and library installation failures. It is recommended to that you install version `1.8.6` or `1.8.8`
2121
- The supported Arduino IDE versions are `1.6.x` and later are supported.
2222
- The Windows Store's version of the Arduino IDE is not supported because of the sandbox environment that the application runs in.
2323

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-arduino",
33
"displayName": "Arduino",
44
"description": "Arduino for Visual Studio Code",
5-
"version": "0.2.23",
5+
"version": "0.2.24-rc",
66
"publisher": "vsciot-vscode",
77
"aiKey": "83dd2c27-6594-41d3-85a9-bdb22070eb42",
88
"preview": true,

0 commit comments

Comments
 (0)