Skip to content

Commit

Permalink
1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugome committed Nov 1, 2022
1 parent c2925ba commit 349456e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 34 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION := 1.0.6
VERSION := 1.0.7

PACK := libp2p
PROJECT := github.com/LuxChanLu/pulumi-${PACK}
Expand Down
28 changes: 0 additions & 28 deletions deployment-templates/README-DEPLOYMENT.md

This file was deleted.

2 changes: 1 addition & 1 deletion provider/pkg/version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

var Version string = "1.0.6"
var Version string = "1.0.7"
3 changes: 3 additions & 0 deletions schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ resources:
type: enum
$ref: "#/types/libp2p:index:KeyType"
description: Type of the key to generate one of RSA, ED25519, SECP256K1, ECDSA
replaceOnChanges: true
bits:
type: integer
description: Siye of the key (Only for RSA key)
replaceOnChanges: true
requiredInputs:
- type
properties:
Expand All @@ -50,6 +52,7 @@ language:
importBasePath: github.com/LuxChanLu/pulumi-libp2p/sdk/go/libp2p
nodejs:
dependencies:
"@pulumi/pulumi": "^3.45.0"
devDependencies:
typescript: "^3.7.0"
python:
Expand Down
6 changes: 3 additions & 3 deletions sdk/nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
"build": "tsc",
"install": "node scripts/install-pulumi-plugin.js resource libp2p ${VERSION}"
},
"dependencies": {
"@pulumi/pulumi": "^3.45.0"
},
"devDependencies": {
"typescript": "^3.7.0"
},
"peerDependencies": {
"@pulumi/pulumi": "latest"
},
"pulumi": {
"resource": true
}
Expand Down
2 changes: 1 addition & 1 deletion sdk/nodejs/scripts/install-pulumi-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if (args.indexOf("${VERSION}") !== -1) {
process.exit(0);
}

var res = childProcess.spawnSync("pulumi", ["plugin", "install"].concat(args), {
var res = childProcess.spawnSync("pulumi", ["plugin", "install", "--server", "github://api.github.com/LuxChanLu"].concat(args), {
stdio: ["ignore", "inherit", "inherit"]
});

Expand Down

0 comments on commit 349456e

Please sign in to comment.