Skip to content

Commit 472d80a

Browse files
chore: bump version to 1.0.8 in README.md files (coder#182)
Co-authored-by: matifali <matifali@users.noreply.github.com>
1 parent 7d6c526 commit 472d80a

File tree

8 files changed

+21
-21
lines changed

8 files changed

+21
-21
lines changed

code-server/README.md

Lines changed: 6 additions & 6 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.5"
17+
version = "1.0.8"
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.5"
31+
version = "1.0.8"
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.5"
44+
version = "1.0.8"
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.5"
61+
version = "1.0.8"
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.5"
77+
version = "1.0.8"
7878
agent_id = coder_agent.example.id
7979
extensions = ["dracula-theme.theme-dracula", "ms-azuretools.vscode-docker"]
8080
}
@@ -87,7 +87,7 @@ Just run code-server in the background, don't fetch it from GitHub:
8787
```tf
8888
module "code-server" {
8989
source = "registry.coder.com/modules/code-server/coder"
90-
version = "1.0.5"
90+
version = "1.0.8"
9191
agent_id = coder_agent.example.id
9292
offline = true
9393
}

filebrowser/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A file browser for your workspace.
1414
```tf
1515
module "filebrowser" {
1616
source = "registry.coder.com/modules/filebrowser/coder"
17-
version = "1.0.3"
17+
version = "1.0.8"
1818
agent_id = coder_agent.example.id
1919
}
2020
```
@@ -28,7 +28,7 @@ module "filebrowser" {
2828
```tf
2929
module "filebrowser" {
3030
source = "registry.coder.com/modules/filebrowser/coder"
31-
version = "1.0.3"
31+
version = "1.0.8"
3232
agent_id = coder_agent.example.id
3333
folder = "/home/coder/project"
3434
}
@@ -39,7 +39,7 @@ module "filebrowser" {
3939
```tf
4040
module "filebrowser" {
4141
source = "registry.coder.com/modules/filebrowser/coder"
42-
version = "1.0.3"
42+
version = "1.0.8"
4343
agent_id = coder_agent.example.id
4444
database_path = ".config/filebrowser.db"
4545
}

jetbrains-gateway/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This module adds a JetBrains Gateway Button to open any workspace with a single
1414
```tf
1515
module "jetbrains_gateway" {
1616
source = "registry.coder.com/modules/jetbrains-gateway/coder"
17-
version = "1.0.6"
17+
version = "1.0.8"
1818
agent_id = coder_agent.example.id
1919
agent_name = "example"
2020
folder = "/home/coder/example"
@@ -32,7 +32,7 @@ module "jetbrains_gateway" {
3232
```tf
3333
module "jetbrains_gateway" {
3434
source = "registry.coder.com/modules/jetbrains-gateway/coder"
35-
version = "1.0.6"
35+
version = "1.0.8"
3636
agent_id = coder_agent.example.id
3737
agent_name = "example"
3838
folder = "/home/coder/example"

jupyter-notebook/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ A module that adds Jupyter Notebook in your Coder template.
1616
```tf
1717
module "jupyter-notebook" {
1818
source = "registry.coder.com/modules/jupyter-notebook/coder"
19-
version = "1.0.2"
19+
version = "1.0.8"
2020
agent_id = coder_agent.example.id
2121
}
2222
```

jupyterlab/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ A module that adds JupyterLab in your Coder template.
1616
```tf
1717
module "jupyterlab" {
1818
source = "registry.coder.com/modules/jupyterlab/coder"
19-
version = "1.0.2"
19+
version = "1.0.8"
2020
agent_id = coder_agent.example.id
2121
}
2222
```

nodejs/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Automatically installs [Node.js](https://github.com/nodejs/node) via [nvm](https
1414
```tf
1515
module "nodejs" {
1616
source = "registry.coder.com/modules/nodejs/coder"
17-
version = "1.0.2"
17+
version = "1.0.8"
1818
agent_id = coder_agent.example.id
1919
}
2020
```
@@ -26,7 +26,7 @@ This installs multiple versions of Node.js:
2626
```tf
2727
module "nodejs" {
2828
source = "registry.coder.com/modules/nodejs/coder"
29-
version = "1.0.2"
29+
version = "1.0.8"
3030
agent_id = coder_agent.example.id
3131
node_versions = [
3232
"18",
@@ -44,7 +44,7 @@ A example with all available options:
4444
```tf
4545
module "nodejs" {
4646
source = "registry.coder.com/modules/nodejs/coder"
47-
version = "1.0.2"
47+
version = "1.0.8"
4848
agent_id = coder_agent.example.id
4949
nvm_version = "v0.39.7"
5050
nvm_install_prefix = "/opt/nvm"

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.2"
19+
version = "1.0.8"
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.2"
31+
version = "1.0.8"
3232
agent_id = coder_agent.example.id
3333
folder = "/home/coder/project"
3434
}

vscode-web/README.md

Lines changed: 3 additions & 3 deletions
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.6"
17+
version = "1.0.8"
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.6"
32+
version = "1.0.8"
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.6"
45+
version = "1.0.8"
4646
agent_id = coder_agent.example.id
4747
extensions = ["github.copilot", "ms-python.python", "ms-toolsai.jupyter"]
4848
accept_license = true

0 commit comments

Comments
 (0)