Skip to content

Commit 05d7857

Browse files
authored
chore(release): release 0.5.1 (#40)
Signed-off-by: slonka <slonka@users.noreply.github.com>
1 parent 5020207 commit 05d7857

File tree

7 files changed

+23
-15
lines changed

7 files changed

+23
-15
lines changed

.speakeasy/gen.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ management:
55
docVersion: 2.0.0
66
speakeasyVersion: 1.551.0
77
generationVersion: 2.610.0
8-
releaseVersion: 0.5.0
9-
configChecksum: e1af7e54e64f5652fa9660033e913a54
8+
releaseVersion: 0.5.1
9+
configChecksum: e8913ad8eaf3841218ae522eeb3fe789
1010
features:
1111
terraform:
1212
additionalDependencies: 0.1.0

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 0.5.1
4+
> Released on 2025/06/05
5+
6+
### Bug fixes
7+
8+
* Correctly define dependencies in gen.yaml under `terraform` and not `go`
9+
310
## 0.5.0
411
> Released on 2025/05/27
512

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ terraform {
1717
required_providers {
1818
konnect-beta = {
1919
source = "kong/konnect-beta"
20-
version = "0.5.0"
20+
version = "0.5.1"
2121
}
2222
}
2323
}

examples/provider/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
konnect-beta = {
44
source = "kong/konnect-beta"
5-
version = "0.5.0"
5+
version = "0.5.1"
66
}
77
}
88
}

gen.yaml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,16 @@ generation:
1818
baseServerURL: ""
1919
go:
2020
version: 1.24.1
21-
additionalDependencies:
22-
dependencies:
23-
github.com/Kong/shared-speakeasy/customtypes: v0.2.2
24-
github.com/Kong/shared-speakeasy/hooks/mesh_defaults: v0.0.1
25-
github.com/Kong/shared-speakeasy/planmodifiers/arbitrary_json: v0.0.1
26-
github.com/Kong/shared-speakeasy/planmodifiers/suppress_zero_null: v0.0.1
27-
github.com/Kong/shared-speakeasy/tfbuilder: v0.0.4
2821
terraform:
29-
version: 0.5.0
22+
version: 0.5.1
3023
additionalDataSources: []
31-
additionalDependencies: {}
24+
additionalDependencies:
25+
github.com/Kong/shared-speakeasy/customtypes: v0.2.2
26+
github.com/Kong/shared-speakeasy/hooks/mesh_defaults: v0.0.1
27+
github.com/Kong/shared-speakeasy/planmodifiers/arbitrary_json: v0.0.1
28+
github.com/Kong/shared-speakeasy/planmodifiers/suppress_zero_null: v0.0.1
29+
github.com/Kong/shared-speakeasy/tfbuilder: v0.0.4
30+
github.com/hashicorp/terraform-plugin-testing: v1.13.1
3231
additionalEphemeralResources: []
3332
additionalProviderAttributes:
3433
httpHeaders: ""

go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ module github.com/kong/terraform-provider-konnect-beta
22

33
go 1.24.1
44

5+
toolchain go1.24.2
6+
57
require (
68
github.com/Kong/shared-speakeasy/customtypes v0.2.2
79
github.com/Kong/shared-speakeasy/hooks/mesh_defaults v0.0.1

internal/sdk/konnectbeta.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,9 @@ func New(opts ...SDKOption) *KonnectBeta {
194194
sdkConfiguration: sdkConfiguration{
195195
Language: "go",
196196
OpenAPIDocVersion: "2.0.0",
197-
SDKVersion: "0.5.0",
197+
SDKVersion: "0.5.1",
198198
GenVersion: "2.610.0",
199-
UserAgent: "speakeasy-sdk/terraform 0.5.0 2.610.0 2.0.0 github.com/kong/terraform-provider-konnect-beta/internal/sdk",
199+
UserAgent: "speakeasy-sdk/terraform 0.5.1 2.610.0 2.0.0 github.com/kong/terraform-provider-konnect-beta/internal/sdk",
200200
Hooks: hooks.New(),
201201
},
202202
}

0 commit comments

Comments
 (0)