Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit c652dbe

Browse files
chore: bump version to 1.0.15 in README.md files (#258)
Co-authored-by: matifali <matifali@users.noreply.github.com>
1 parent 4021d85 commit c652dbe

File tree

8 files changed

+28
-28
lines changed

8 files changed

+28
-28
lines changed

code-server/README.md

Lines changed: 7 additions & 7 deletions
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.14"
17+
version = "1.0.15"
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.14"
31+
version = "1.0.15"
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.14"
44+
version = "1.0.15"
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.14"
61+
version = "1.0.15"
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.14"
77+
version = "1.0.15"
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.14"
92+
version = "1.0.15"
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.14"
104+
version = "1.0.15"
105105
agent_id = coder_agent.example.id
106106
offline = true
107107
}

coder-login/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Automatically logs the user into Coder when creating their workspace.
1414
```tf
1515
module "coder-login" {
1616
source = "registry.coder.com/modules/coder-login/coder"
17-
version = "1.0.2"
17+
version = "1.0.15"
1818
agent_id = coder_agent.example.id
1919
}
2020
```

dotfiles/README.md

Lines changed: 6 additions & 6 deletions
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.14"
21+
version = "1.0.15"
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.14"
33+
version = "1.0.15"
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.14"
43+
version = "1.0.15"
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.14"
54+
version = "1.0.15"
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.14"
60+
version = "1.0.15"
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.14"
74+
version = "1.0.15"
7575
agent_id = coder_agent.example.id
7676
default_dotfiles_uri = "https://github.com/coder/dotfiles"
7777
}

git-config/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Runs a script that updates git credentials in the workspace to match the user's
1414
```tf
1515
module "git-config" {
1616
source = "registry.coder.com/modules/git-config/coder"
17-
version = "1.0.12"
17+
version = "1.0.15"
1818
agent_id = coder_agent.example.id
1919
}
2020
```
@@ -28,7 +28,7 @@ TODO: Add screenshot
2828
```tf
2929
module "git-config" {
3030
source = "registry.coder.com/modules/git-config/coder"
31-
version = "1.0.12"
31+
version = "1.0.15"
3232
agent_id = coder_agent.example.id
3333
allow_email_change = true
3434
}
@@ -41,7 +41,7 @@ TODO: Add screenshot
4141
```tf
4242
module "git-config" {
4343
source = "registry.coder.com/modules/git-config/coder"
44-
version = "1.0.12"
44+
version = "1.0.15"
4545
agent_id = coder_agent.example.id
4646
allow_username_change = false
4747
allow_email_change = false

github-upload-public-key/README.md

Lines changed: 2 additions & 2 deletions
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.14"
17+
version = "1.0.15"
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.14"
49+
version = "1.0.15"
5050
agent_id = coder_agent.example.id
5151
external_auth_id = data.coder_external_auth.github.id
5252
}

jfrog-oauth/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Install the JF CLI and authenticate package managers with Artifactory using OAut
1717
```tf
1818
module "jfrog" {
1919
source = "registry.coder.com/modules/jfrog-oauth/coder"
20-
version = "1.0.5"
20+
version = "1.0.15"
2121
agent_id = coder_agent.example.id
2222
jfrog_url = "https://example.jfrog.io"
2323
username_field = "username" # If you are using GitHub to login to both Coder and Artifactory, use username_field = "username"
@@ -44,7 +44,7 @@ Configure the Python pip package manager to fetch packages from Artifactory whil
4444
```tf
4545
module "jfrog" {
4646
source = "registry.coder.com/modules/jfrog-oauth/coder"
47-
version = "1.0.5"
47+
version = "1.0.15"
4848
agent_id = coder_agent.example.id
4949
jfrog_url = "https://example.jfrog.io"
5050
username_field = "email"
@@ -72,7 +72,7 @@ The [JFrog extension](https://open-vsx.org/extension/JFrog/jfrog-vscode-extensio
7272
```tf
7373
module "jfrog" {
7474
source = "registry.coder.com/modules/jfrog-oauth/coder"
75-
version = "1.0.5"
75+
version = "1.0.15"
7676
agent_id = coder_agent.example.id
7777
jfrog_url = "https://example.jfrog.io"
7878
username_field = "username" # If you are using GitHub to login to both Coder and Artifactory, use username_field = "username"

jfrog-token/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Install the JF CLI and authenticate package managers with Artifactory using Arti
1515
```tf
1616
module "jfrog" {
1717
source = "registry.coder.com/modules/jfrog-token/coder"
18-
version = "1.0.10"
18+
version = "1.0.15"
1919
agent_id = coder_agent.example.id
2020
jfrog_url = "https://XXXX.jfrog.io"
2121
artifactory_access_token = var.artifactory_access_token
@@ -41,7 +41,7 @@ For detailed instructions, please see this [guide](https://coder.com/docs/v2/lat
4141
```tf
4242
module "jfrog" {
4343
source = "registry.coder.com/modules/jfrog-token/coder"
44-
version = "1.0.10"
44+
version = "1.0.15"
4545
agent_id = coder_agent.example.id
4646
jfrog_url = "https://YYYY.jfrog.io"
4747
artifactory_access_token = var.artifactory_access_token # An admin access token
@@ -74,7 +74,7 @@ The [JFrog extension](https://open-vsx.org/extension/JFrog/jfrog-vscode-extensio
7474
```tf
7575
module "jfrog" {
7676
source = "registry.coder.com/modules/jfrog-token/coder"
77-
version = "1.0.10"
77+
version = "1.0.15"
7878
agent_id = coder_agent.example.id
7979
jfrog_url = "https://XXXX.jfrog.io"
8080
artifactory_access_token = var.artifactory_access_token
@@ -94,7 +94,7 @@ data "coder_workspace" "me" {}
9494
9595
module "jfrog" {
9696
source = "registry.coder.com/modules/jfrog-token/coder"
97-
version = "1.0.10"
97+
version = "1.0.15"
9898
agent_id = coder_agent.example.id
9999
jfrog_url = "https://XXXX.jfrog.io"
100100
artifactory_access_token = var.artifactory_access_token

vscode-desktop/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder)
1616
```tf
1717
module "vscode" {
1818
source = "registry.coder.com/modules/vscode-desktop/coder"
19-
version = "1.0.8"
19+
version = "1.0.15"
2020
agent_id = coder_agent.example.id
2121
}
2222
```
@@ -28,7 +28,7 @@ module "vscode" {
2828
```tf
2929
module "vscode" {
3030
source = "registry.coder.com/modules/vscode-desktop/coder"
31-
version = "1.0.8"
31+
version = "1.0.15"
3232
agent_id = coder_agent.example.id
3333
folder = "/home/coder/project"
3434
}

0 commit comments

Comments
 (0)