Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
masterfuzz committed Apr 26, 2023
1 parent ef1c33f commit 9ce6807
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.1
VERSION=1.5.2

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.1",
"version": "1.5.2",
"description": ". Based on terraform-provider-checkmate: version v1.5.0",
"main": "ts_bin/index.js",
"types": "ts_bin/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"install": "node sdk/scripts/install-pulumi-plugin.js resource checkmate 1.5.1 --server github://api.github.com/tetratelabs"
"install": "node sdk/scripts/install-pulumi-plugin.js resource checkmate 1.5.2 --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.1",
Version: "1.5.2",
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.1") !== -1) {
if (args.indexOf("v1.5.2") !== -1) {
process.exit(0);
}

Expand Down

0 comments on commit 9ce6807

Please sign in to comment.