diff --git a/.vscode/launch.json b/.vscode/launch.json index 03bdaa0..44e41ba 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,18 +1,11 @@ { "version": "0.2.0", "configurations": [ - { - "name": "PowerShell Interactive", - "type": "PowerShell", - "request": "launch", - "cwd": "${workspaceFolder}", - "createTemporaryIntegratedConsole": true - }, { "name": "PowerShell Debug Script", "type": "PowerShell", "request": "launch", - "script": "${workspaceFolder}\\.debug.ps1", + "script": "${workspaceFolder}\\.debug.temp.ps1", "cwd": "${workspaceFolder}", "createTemporaryIntegratedConsole": true } diff --git a/Adb/Adb.psd1 b/Adb/Adb.psd1 index 1581bfe..6cd0ce8 100644 --- a/Adb/Adb.psd1 +++ b/Adb/Adb.psd1 @@ -3,7 +3,7 @@ RootModule = 'Adb.psm1' # Version number of this module. - ModuleVersion = '1.4.1' + ModuleVersion = '1.4.2' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c38636..e3c2a3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is mainly based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## 1.4.2 - 2020-08-06 * Fixed: Optimize validation parsing for not found items (http 404)