Skip to content

Commit

Permalink
1.14.0 rc (#465)
Browse files Browse the repository at this point in the history
  • Loading branch information
adashen authored Jun 17, 2019
1 parent ecdc3c6 commit e9c68ae
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Change Log
## 1.14.0 - 2019-06-XX
### Added
* Support create an Azure IoT Edge Solution without any module.

### Changed
* Only add tempSensor module when adding custom module.
* Fixed the issue command broken on VSCode 1.35.0+ [#459](https://github.com/microsoft/vscode-azure-iot-edge/issues/459).

## 1.13.0 - 2019-05-28
### Added
* Support relative path schema for the reference of external custom module. The schema is like ${MODULEDIR\<RelativePathToModuleFolder\>}
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,13 @@

![Added](images/multipleplatform.gif)

## What's New (v1.13.0)
## What's New (v1.14.0)
### Added
* Support relative path schema for the reference of external custom module. The schema is like ${MODULEDIR\<RelativePathToModuleFolder\>}
* Support create an Azure IoT Edge Solution without any module.

### Changed
* Only add tempSensor module when adding custom module.
* Fixed the issue command broken on VSCode 1.35.0+ [#459](https://github.com/microsoft/vscode-azure-iot-edge/issues/459).

## Known Issues
* [C module remote debug error](https://github.com/Microsoft/vscode-azure-iot-edge/issues/283)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "azure-iot-edge",
"displayName": "Azure IoT Edge",
"description": "Develop, deploy, debug, and manage your IoT Edge solution",
"version": "1.13.0",
"version": "1.14.0-rc",
"publisher": "vsciot-vscode",
"aiKey": "95b20d64-f54f-4de3-8ad5-165a75a6c6fe",
"icon": "logo.png",
Expand Down
2 changes: 1 addition & 1 deletion src/edge/edgeManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ export class EdgeManager {
}

private checkAddressExist(address: string, registriesObj: any): { exists: boolean, keySet: Set<string> } {
const keySet = new Set();
const keySet = new Set<string>();
let exists = false;
if (registriesObj === undefined) {
return { exists, keySet };
Expand Down

0 comments on commit e9c68ae

Please sign in to comment.