Skip to content

Commit

Permalink
Prepare for 1.5.4 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
liamawhite authored May 25, 2023
1 parent 0070bda commit 446af6b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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.5.0

# Pulumi bridged provider version (this package)
VERSION=1.5.3
VERSION=1.5.4

default: build

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@tetratelabs/pulumi-checkmate",
"version": "1.5.3",
"version": "1.5.4",
"description": ". Based on terraform-provider-checkmate: version v1.5.0",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"install": "node sdk/scripts/install-pulumi-plugin.js resource checkmate 1.5.3 --server github://api.github.com/tetratelabs"
"install": "node sdk/scripts/install-pulumi-plugin.js resource checkmate 1.5.4 --server github://api.github.com/tetratelabs"
},
"dependencies": {
"@pulumi/pulumi": "^3.0.0"
Expand Down
2 changes: 1 addition & 1 deletion provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func Provider() tfpfbridge.ProviderInfo {
Name: "checkmate",
GitHubOrg: "tetratelabs",
TFProviderVersion: "1.5.0",
Version: "1.5.3",
Version: "1.5.4",
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.5.3") !== -1) {
if (args.indexOf("v1.5.4") !== -1) {
process.exit(0);
}

Expand Down

0 comments on commit 446af6b

Please sign in to comment.