Skip to content

Commit dcd605c

Browse files
chore: bump version to 1.0.14 in README.md files (#245)
Co-authored-by: matifali <[email protected]>
1 parent f5d4152 commit dcd605c

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

code-server/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Automatically install [code-server](https://github.com/coder/code-server) in a w
1414
```tf
1515
module "code-server" {
1616
source = "registry.coder.com/modules/code-server/coder"
17-
version = "1.0.12"
17+
version = "1.0.14"
1818
agent_id = coder_agent.example.id
1919
}
2020
```
@@ -28,7 +28,7 @@ module "code-server" {
2828
```tf
2929
module "code-server" {
3030
source = "registry.coder.com/modules/code-server/coder"
31-
version = "1.0.12"
31+
version = "1.0.14"
3232
agent_id = coder_agent.example.id
3333
install_version = "4.8.3"
3434
}
@@ -41,7 +41,7 @@ Install the Dracula theme from [OpenVSX](https://open-vsx.org/):
4141
```tf
4242
module "code-server" {
4343
source = "registry.coder.com/modules/code-server/coder"
44-
version = "1.0.12"
44+
version = "1.0.14"
4545
agent_id = coder_agent.example.id
4646
extensions = [
4747
"dracula-theme.theme-dracula"
@@ -58,7 +58,7 @@ Configure VS Code's [settings.json](https://code.visualstudio.com/docs/getstarte
5858
```tf
5959
module "code-server" {
6060
source = "registry.coder.com/modules/code-server/coder"
61-
version = "1.0.12"
61+
version = "1.0.14"
6262
agent_id = coder_agent.example.id
6363
extensions = ["dracula-theme.theme-dracula"]
6464
settings = {
@@ -74,7 +74,7 @@ Just run code-server in the background, don't fetch it from GitHub:
7474
```tf
7575
module "code-server" {
7676
source = "registry.coder.com/modules/code-server/coder"
77-
version = "1.0.12"
77+
version = "1.0.14"
7878
agent_id = coder_agent.example.id
7979
extensions = ["dracula-theme.theme-dracula", "ms-azuretools.vscode-docker"]
8080
}
@@ -89,7 +89,7 @@ Run an existing copy of code-server if found, otherwise download from GitHub:
8989
```tf
9090
module "code-server" {
9191
source = "registry.coder.com/modules/code-server/coder"
92-
version = "1.0.12"
92+
version = "1.0.14"
9393
agent_id = coder_agent.example.id
9494
use_cached = true
9595
extensions = ["dracula-theme.theme-dracula", "ms-azuretools.vscode-docker"]
@@ -101,7 +101,7 @@ Just run code-server in the background, don't fetch it from GitHub:
101101
```tf
102102
module "code-server" {
103103
source = "registry.coder.com/modules/code-server/coder"
104-
version = "1.0.12"
104+
version = "1.0.14"
105105
agent_id = coder_agent.example.id
106106
offline = true
107107
}

dotfiles/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Under the hood, this module uses the [coder dotfiles](https://coder.com/docs/v2/
1818
```tf
1919
module "dotfiles" {
2020
source = "registry.coder.com/modules/dotfiles/coder"
21-
version = "1.0.12"
21+
version = "1.0.14"
2222
agent_id = coder_agent.example.id
2323
}
2424
```
@@ -30,7 +30,7 @@ module "dotfiles" {
3030
```tf
3131
module "dotfiles" {
3232
source = "registry.coder.com/modules/dotfiles/coder"
33-
version = "1.0.0"
33+
version = "1.0.14"
3434
agent_id = coder_agent.example.id
3535
}
3636
```
@@ -40,7 +40,7 @@ module "dotfiles" {
4040
```tf
4141
module "dotfiles" {
4242
source = "registry.coder.com/modules/dotfiles/coder"
43-
version = "1.0.0"
43+
version = "1.0.14"
4444
agent_id = coder_agent.example.id
4545
user = "root"
4646
}
@@ -51,13 +51,13 @@ module "dotfiles" {
5151
```tf
5252
module "dotfiles" {
5353
source = "registry.coder.com/modules/dotfiles/coder"
54-
version = "1.0.0"
54+
version = "1.0.14"
5555
agent_id = coder_agent.example.id
5656
}
5757
5858
module "dotfiles-root" {
5959
source = "registry.coder.com/modules/dotfiles/coder"
60-
version = "1.0.0"
60+
version = "1.0.14"
6161
agent_id = coder_agent.example.id
6262
user = "root"
6363
dotfiles_uri = module.dotfiles.dotfiles_uri
@@ -71,7 +71,7 @@ You can set a default dotfiles repository for all users by setting the `default_
7171
```tf
7272
module "dotfiles" {
7373
source = "registry.coder.com/modules/dotfiles/coder"
74-
version = "1.0.12"
74+
version = "1.0.14"
7575
agent_id = coder_agent.example.id
7676
default_dotfiles_uri = "https://github.com/coder/dotfiles"
7777
}

github-upload-public-key/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Templates that utilize Github External Auth can automatically ensure that the Co
1414
```tf
1515
module "github-upload-public-key" {
1616
source = "registry.coder.com/modules/github-upload-public-key/coder"
17-
version = "1.0.13"
17+
version = "1.0.14"
1818
agent_id = coder_agent.example.id
1919
}
2020
```
@@ -46,7 +46,7 @@ data "coder_external_auth" "github" {
4646
4747
module "github-upload-public-key" {
4848
source = "registry.coder.com/modules/github-upload-public-key/coder"
49-
version = "1.0.13"
49+
version = "1.0.14"
5050
agent_id = coder_agent.example.id
5151
external_auth_id = data.coder_external_auth.github.id
5252
}

vscode-web/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Automatically install [Visual Studio Code Server](https://code.visualstudio.com/
1414
```tf
1515
module "vscode-web" {
1616
source = "registry.coder.com/modules/vscode-web/coder"
17-
version = "1.0.11"
17+
version = "1.0.14"
1818
agent_id = coder_agent.example.id
1919
accept_license = true
2020
}
@@ -29,7 +29,7 @@ module "vscode-web" {
2929
```tf
3030
module "vscode-web" {
3131
source = "registry.coder.com/modules/vscode-web/coder"
32-
version = "1.0.11"
32+
version = "1.0.14"
3333
agent_id = coder_agent.example.id
3434
install_prefix = "/home/coder/.vscode-web"
3535
folder = "/home/coder"
@@ -42,7 +42,7 @@ module "vscode-web" {
4242
```tf
4343
module "vscode-web" {
4444
source = "registry.coder.com/modules/vscode-web/coder"
45-
version = "1.0.11"
45+
version = "1.0.14"
4646
agent_id = coder_agent.example.id
4747
extensions = ["github.copilot", "ms-python.python", "ms-toolsai.jupyter"]
4848
accept_license = true
@@ -56,7 +56,7 @@ Configure VS Code's [settings.json](https://code.visualstudio.com/docs/getstarte
5656
```tf
5757
module "vscode-web" {
5858
source = "registry.coder.com/modules/vscode-web/coder"
59-
version = "1.0.11"
59+
version = "1.0.14"
6060
agent_id = coder_agent.example.id
6161
extensions = ["dracula-theme.theme-dracula"]
6262
settings = {

0 commit comments

Comments
 (0)