Skip to content

Commit 406099b

Browse files
authored
1.19.0-rc (#515)
* 1.19.0-rc * Update README.md and CHANGELOG.md
1 parent ed3f797 commit 406099b

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Change Log
2+
## 1.19.0 - 2019-11-xx
3+
### Added
4+
* Add docker status detection
5+
* Support adding Azure Event Grid module
6+
7+
### Changed
8+
* Use standalone simulator (iotedgehubdev)
9+
210
## 1.18.0 - 2019-10-30
311
### Added
412
* Support multiple plans for marketplace

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@
2121

2222
![Added](images/multipleplatform.gif)
2323

24-
## What's New (v1.17.0)
24+
## What's New (v1.19.0)
2525
### Added
26-
* Add CodeLens to help user update ASA job information.
26+
* Add docker status detection
27+
* Support adding Azure Event Grid module
2728

28-
### Fixed
29-
* Fix broken link in README.md.
29+
### Changed
30+
* Use standalone simulator (iotedgehubdev)
3031

3132
## Known Issues
3233
* [C module remote debug error](https://github.com/Microsoft/vscode-azure-iot-edge/issues/283)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "azure-iot-edge",
33
"displayName": "Azure IoT Edge",
44
"description": "Develop, deploy, debug, and manage your IoT Edge solution",
5-
"version": "1.18.0",
5+
"version": "1.19.0-rc",
66
"publisher": "vsciot-vscode",
77
"aiKey": "95b20d64-f54f-4de3-8ad5-165a75a6c6fe",
88
"icon": "logo.png",

src/edge/simulator.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ export class Simulator {
292292

293293
try {
294294
if (this.simulatorExecutablePath) {
295-
await fse.remove(this.simulatorExecutablePath);
295+
await fse.remove(path.dirname(this.simulatorExecutablePath));
296296
}
297297
} catch (err) {
298298
// ignore

0 commit comments

Comments
 (0)