Skip to content

Commit

Permalink
Fix deprecation warnings on run (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
masterfuzz authored May 2, 2024
1 parent 4a0d584 commit be83904
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
PROVIDER_VERSION=1.7.0

# Pulumi bridged provider version (this package)
VERSION=1.7.0
VERSION=1.7.1

default: build

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@tetratelabs/pulumi-checkmate",
"version": "1.7.0",
"version": "1.7.1",
"description": ". Based on terraform-provider-checkmate: version v1.7.0",
"main": "ts_bin/index.js",
"types": "ts_bin/index.d.ts",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"install": "node sdk/scripts/install-pulumi-plugin.js resource checkmate 1.7.0 --server github://api.github.com/tetratelabs"
"install": "node sdk/scripts/install-pulumi-plugin.js resource checkmate 1.7.1 --server github://api.github.com/tetratelabs"
},
"dependencies": {
"@pulumi/pulumi": "^3.0.0"
Expand Down
4 changes: 2 additions & 2 deletions package.json.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "@tetratelabs/pulumi-checkmate",
"version": "${VERSION}",
"description": ". Based on terraform-provider-checkmate: version v${PROVIDER_VERSION}",
"main": "ts_bin/index.js",
"types": "ts_bin/index.d.ts",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
Expand Down
2 changes: 1 addition & 1 deletion provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func Provider() tfbridge.ProviderInfo {
Name: "checkmate",
GitHubOrg: "tetratelabs",
TFProviderVersion: "1.7.0",
Version: "1.7.0",
Version: "1.7.1",
Resources: map[string]*tfbridge.ResourceInfo{
"checkmate_http_health": {Tok: checkResourceTok(checkMod, "HttpHealth")},
"checkmate_local_command": {Tok: checkResourceTok(checkMod, "LocalCommand")},
Expand Down
2 changes: 1 addition & 1 deletion sdk/scripts/install-pulumi-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var childProcess = require("child_process");

var args = process.argv.slice(2);

if (args.indexOf("v1.7.0") !== -1) {
if (args.indexOf("v1.7.1") !== -1) {
process.exit(0);
}

Expand Down

0 comments on commit be83904

Please sign in to comment.