Skip to content

Commit

Permalink
Publish 1.2.0 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
itowlson authored Apr 28, 2020
1 parent 466614f commit 2cce89b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 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

## 1.2.0

* Added Cluster Explorer API v1.1

Thanks to @lstocchi

## 1.1.0

* Added configuration API
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function activate(context: vscode.ExtensionContext) {

async function showResourceUsage(target?: any): Promise<void> {
// Standard pattern for accessing the APIs
const explorer = await k8s.extension.clusterExplorer.v1;
const explorer = await k8s.extension.clusterExplorer.v1_1;
if (!explorer.available) {
vscode.window.showErrorMessage(`Command not available: ${explorer.reason}`);
return;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscode-kubernetes-tools-api",
"version": "1.1.0",
"version": "1.2.0",
"description": "Documents and encapsulates the API for the Kubernetes extension for Visual Studio Code",
"main": "js/index.js",
"types": "js/index.d.ts",
Expand Down

0 comments on commit 2cce89b

Please sign in to comment.