Skip to content

Commit

Permalink
Update CHANGELOG and README (and fix a type issue)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrog committed Jun 25, 2017
1 parent d7f3ca1 commit 1c5d495
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,9 @@
# Change Log
All notable changes to the "vscode-nuget-package-manager" extension will be documented in this file.

## [1.1.4] - 2017-06-24
- Respect http.proxyStrictSSL setting

## [1.1.3] - 2017-05-11
- Support for http proxy settings (closes #18)

Expand Down
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -32,6 +32,9 @@ at the moment, but the eventual plan is to replace this dependency.

## Release Notes

### 1.1.4
- Respect http.proxyStrictSSL setting

### 1.1.3
- Support for http proxy settings (closes #18)

Expand Down
2 changes: 1 addition & 1 deletion src/actions/shared/checkProjFilePath.ts
Expand Up @@ -5,7 +5,7 @@ import { getProjFileRecursive } from './';

export default function checkProjFilePath(startPath: string): Promise<Array<string> | never> {
return getProjFileRecursive(startPath)
.then((foundProjFile: Array<string>) => {
.then<Array<string> | Promise<never>>((foundProjFile: Array<string>) => {
if (foundProjFile.length < 1) {
return handleError<Promise<never>>(
null,
Expand Down

0 comments on commit 1c5d495

Please sign in to comment.