diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d30b6d5..96350fa4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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\} diff --git a/README.md b/README.md index b1e5bc99..58e1040e 100644 --- a/README.md +++ b/README.md @@ -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\} +* 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) diff --git a/package-lock.json b/package-lock.json index df2239e7..3b7f4b93 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "azure-iot-edge", - "version": "1.13.0", + "version": "1.14.0-rc", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index cbb9749f..fb5f346d 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/edge/edgeManager.ts b/src/edge/edgeManager.ts index d630c050..74d14932 100644 --- a/src/edge/edgeManager.ts +++ b/src/edge/edgeManager.ts @@ -738,7 +738,7 @@ export class EdgeManager { } private checkAddressExist(address: string, registriesObj: any): { exists: boolean, keySet: Set } { - const keySet = new Set(); + const keySet = new Set(); let exists = false; if (registriesObj === undefined) { return { exists, keySet };