Skip to content

Commit 1a38271

Browse files
fix: fix minimum coder version warning (#72)
It was incorrectly linked to 2.13.0. --------- Co-authored-by: Ethan Dickson <[email protected]>
1 parent d23df4c commit 1a38271

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ page_title: "coderd Provider"
44
subcategory: ""
55
description: |-
66
~> Warning
7-
This provider is only compatible with Coder version 2.10.1 https://github.com/coder/coder/releases/tag/v2.13.0 and later.
7+
This provider is only compatible with Coder version 2.10.1 https://github.com/coder/coder/releases/tag/v2.10.1 and later.
88
---
99

1010
# coderd Provider
1111

1212
~> **Warning**
13-
This provider is only compatible with Coder version [2.10.1](https://github.com/coder/coder/releases/tag/v2.13.0) and later.
13+
This provider is only compatible with Coder version [2.10.1](https://github.com/coder/coder/releases/tag/v2.10.1) and later.
1414

1515

1616

integration/integration_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ func TestIntegration(t *testing.T) {
166166
tfCmd.Stderr = &buf
167167
tt.preF(t, client)
168168
if err := tfCmd.Run(); !assert.NoError(t, err) {
169-
t.Logf(buf.String())
169+
t.Logf("%s", buf.String())
170170
t.FailNow()
171171
}
172172
tt.assertF(t, client)

internal/provider/provider.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func (p *CoderdProvider) Schema(ctx context.Context, req provider.SchemaRequest,
5454
resp.Schema = schema.Schema{
5555
MarkdownDescription: `
5656
~> **Warning**
57-
This provider is only compatible with Coder version [2.10.1](https://github.com/coder/coder/releases/tag/v2.13.0) and later.
57+
This provider is only compatible with Coder version [2.10.1](https://github.com/coder/coder/releases/tag/v2.10.1) and later.
5858
`,
5959
Attributes: map[string]schema.Attribute{
6060
"url": schema.StringAttribute{

0 commit comments

Comments
 (0)