Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ management:
docVersion: 1.102.0
speakeasyVersion: 1.700.2
generationVersion: 2.801.2
releaseVersion: 0.30.1
configChecksum: 3663426c09920a8ed6e46f26b60f87aa
releaseVersion: 0.30.2
configChecksum: afb35038039b59b339a83873e2e87dfa
persistentEdits:
generation_id: fa9416b7-6c9d-4aa5-b5cb-f5815d4b62d8
pristine_commit_hash: 8b727d9d7ead153a998336c81b01bdba5fdfbcbb
Expand Down Expand Up @@ -38,7 +38,7 @@ trackedFiles:
pristine_git_object: 8e707bb129af1da185ba30b4c289b0160819c437
examples/provider/provider.tf:
id: 954e955c0240
last_write_checksum: sha1:3a1084caea77713a0d2f29f03631c76c5297ff9e
last_write_checksum: sha1:a4b27a26e565d9c5661e6e4dadacc79ddad0cc4a
pristine_git_object: 7b241353e887cd10c08b0653d13c2227ce91f456
examples/resources/seqera_action/import-by-string-id.tf:
id: 7b9e1b28088a
Expand Down Expand Up @@ -3606,7 +3606,7 @@ trackedFiles:
pristine_git_object: aa809fccb3445b1e2530a979dad620512f50e70f
internal/sdk/seqera.go:
id: b1c23bc5193c
last_write_checksum: sha1:08191b44a99516795b84b317e4ec164bad145979
last_write_checksum: sha1:7ddff4c9be8404586153048664513f0f5271dcc0
pristine_git_object: 89364ed6208c4c999b317d23d7d954d63ac46bc5
internal/sdk/serviceinfo.go:
id: 085db9a15b34
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ generation:
generateNewTests: false
skipResponseBodyAssertions: false
terraform:
version: 0.30.1
version: 0.30.2
additionalDataSources:
- datasource: organization_data.NewDataSource
importAlias: organization_data
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ terraform {
required_providers {
seqera = {
source = "seqeralabs/seqera"
version = "0.30.1"
version = "0.30.2"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ terraform {
required_providers {
seqera = {
source = "seqeralabs/seqera"
version = "0.30.1"
version = "0.30.2"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
seqera = {
source = "seqeralabs/seqera"
version = "0.30.1"
version = "0.30.2"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions internal/sdk/seqera.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,9 @@ func WithTimeout(timeout time.Duration) SDKOption {
// New creates a new instance of the SDK with the provided options
func New(opts ...SDKOption) *Seqera {
sdk := &Seqera{
SDKVersion: "0.30.1",
SDKVersion: "0.30.2",
sdkConfiguration: config.SDKConfiguration{
UserAgent: "speakeasy-sdk/terraform 0.30.1 2.801.2 1.102.0 github.com/seqeralabs/terraform-provider-seqera/internal/sdk",
UserAgent: "speakeasy-sdk/terraform 0.30.2 2.801.2 1.102.0 github.com/seqeralabs/terraform-provider-seqera/internal/sdk",
ServerList: ServerList,
},
hooks: hooks.New(),
Expand Down
Loading