Skip to content

Commit

Permalink
Release 0.0.3
Browse files Browse the repository at this point in the history
Signed-off-by: Yevhen Vydolob <yvydolob@redhat.com>
  • Loading branch information
evidolob committed Jan 16, 2020
1 parent 0d28ca1 commit 8bb4883
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.0.3 (January 16, 2020)

This is bug fix release:
* Fixed check Tekton CLI when CLI has 'v' prefix in version
* [#130](https://github.com/redhat-developer/vscode-tekton/issues/130) Update CLI not found error message

## 0.0.2 (January 15, 2020)

This release brings to you:
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": "vscode-tekton-pipelines",
"displayName": "Tekton Pipelines",
"description": "Tekton Pipelines extension by Red Hat",
"version": "0.0.2",
"version": "0.0.3",
"license": "MIT",
"publisher": "redhat",
"author": "Red Hat",
Expand Down
2 changes: 1 addition & 1 deletion src/tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export class ToolsConfig {

if (response !== downgradeVersion) {
response = await vscode.window.showInformationMessage(
`Cannot find ${ToolsConfig.tool['tkn'].description} ${ToolsConfig.tool['tkn'].versionRangeLabel}.`, installRequest, 'Help', 'Cancel');
`Cannot find Tekton CLI ${ToolsConfig.tool['tkn'].versionRangeLabel} for interacting with Tekton Pipelines.`, installRequest, 'Help', 'Cancel');
}
fsex.ensureDirSync(path.resolve(Platform.getUserHomePath(), '.vs-tekton'));
if (response === installRequest || response === downgradeVersion) {
Expand Down

0 comments on commit 8bb4883

Please sign in to comment.