Skip to content

Commit

Permalink
1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugome committed Oct 19, 2022
1 parent 0bd88ee commit 4d1b038
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.4
VERSION := 1.0.5

PACK := libp2p
PROJECT := github.com/LuxChanLu/pulumi-${PACK}
Expand Down
2 changes: 1 addition & 1 deletion provider/pkg/provider/key.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func NewKey(ctx *pulumi.Context,
}

generated := pulumi.All(args.Type, args.Bits).ApplyT(func(args []interface{}) ([]string, error) {
priv, pub, err := crypto.GenerateKeyPair(keyTypeMapping[KeyType(args[0].(string))], args[0].(int))
priv, pub, err := crypto.GenerateKeyPair(keyTypeMapping[KeyType(args[0].(string))], args[1].(int))
if err != nil {
return nil, err
}
Expand Down
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.3"
var Version string = "1.0.5"

0 comments on commit 4d1b038

Please sign in to comment.