Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iagoalonsomrf committed Jul 10, 2024
1 parent 95604b5 commit 7aa8395
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ testacc: test
TF_ACC=1 go test ./...

install: terraform-provider-dockerhub
mkdir -p ~/.terraform.d/plugins/registry.terraform.io/Marfeel/dockerhub/0.2.1/linux_amd64
cp $+ ~/.terraform.d/plugins/registry.terraform.io/Marfeel/dockerhub/0.2.1/linux_amd64
mkdir -p ~/.terraform.d/plugins/registry.terraform.io/Marfeel/dockerhub/0.3.0/linux_amd64
cp $+ ~/.terraform.d/plugins/registry.terraform.io/Marfeel/dockerhub/0.3.0/linux_amd64
-rm .terraform.lock.hcl
terraform init

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ terraform {
required_providers {
dockerhub = {
source = "Marfeel/dockerhub"
version = ">= 0.2.1"
version = ">= 0.3.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ terraform {
required_providers {
dockerhub = {
source = "Marfeel/dockerhub"
version = ">= 0.2.1"
version = ">= 0.3.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/installation.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
dockerhub = {
source = "Marfeel/dockerhub"
version = ">= 0.2.1"
version = ">= 0.3.0"
}
}
}
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/Marfeel/terraform-provider-dockerhub
go 1.16

require (
github.com/Marfeel/dockerhub/v2 v2.4.1-0.20240709151401-994dd6e9fbdf
github.com/Marfeel/dockerhub/v2 v2.5.0
github.com/agext/levenshtein v1.2.3 // indirect
github.com/hashicorp/terraform-plugin-docs v0.13.0
github.com/hashicorp/terraform-plugin-sdk/v2 v2.26.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -362,8 +362,8 @@ cloud.google.com/go/workflows v1.9.0/go.mod h1:ZGkj1aFIOd9c8Gerkjjq7OW7I5+l6cSvT
dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
github.com/Marfeel/dockerhub/v2 v2.4.1-0.20240709151401-994dd6e9fbdf h1:hPA4Pi8ktXutbUL32Oe/RzliRYvEVbXhTt1WOEcuvYA=
github.com/Marfeel/dockerhub/v2 v2.4.1-0.20240709151401-994dd6e9fbdf/go.mod h1:0oJJy/ogptA+kYjmrviXU/GEwDkj09XrqsQ2lw/9KNg=
github.com/Marfeel/dockerhub/v2 v2.5.0 h1:RPPmL7aZBtJIm8PFf/4erdXSHX3xEyhsB8yBBxaVQt0=
github.com/Marfeel/dockerhub/v2 v2.5.0/go.mod h1:0oJJy/ogptA+kYjmrviXU/GEwDkj09XrqsQ2lw/9KNg=
github.com/Masterminds/goutils v1.1.0/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU=
github.com/Masterminds/goutils v1.1.1 h1:5nUrii3FMTL5diU80unEVvNevw1nH4+ZV4DSLVJLSYI=
github.com/Masterminds/goutils v1.1.1/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU=
Expand Down

0 comments on commit 7aa8395

Please sign in to comment.