Skip to content

Commit fdbb2e3

Browse files
chore: bump version to 1.0.10 in README.md files (coder#201)
Co-authored-by: matifali <matifali@users.noreply.github.com>
1 parent ee80d1f commit fdbb2e3

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

aws-region/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Customize the preselected parameter value:
1717
```tf
1818
module "aws-region" {
1919
source = "registry.coder.com/modules/aws-region/coder"
20-
version = "1.0.2"
20+
version = "1.0.10"
2121
default = "us-east-1"
2222
}
2323
@@ -37,7 +37,7 @@ Change the display name and icon for a region using the corresponding maps:
3737
```tf
3838
module "aws-region" {
3939
source = "registry.coder.com/modules/aws-region/coder"
40-
version = "1.0.2"
40+
version = "1.0.10"
4141
default = "ap-south-1"
4242
4343
custom_names = {
@@ -63,7 +63,7 @@ Hide the Asia Pacific regions Seoul and Osaka:
6363
```tf
6464
module "aws-region" {
6565
source = "registry.coder.com/modules/aws-region/coder"
66-
version = "1.0.2"
66+
version = "1.0.10"
6767
exclude = ["ap-northeast-2", "ap-northeast-3"]
6868
}
6969

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.5"
18+
version = "1.0.10"
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.5"
44+
version = "1.0.10"
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.5"
77+
version = "1.0.10"
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.5"
97+
version = "1.0.10"
9898
agent_id = coder_agent.example.id
9999
jfrog_url = "https://XXXX.jfrog.io"
100100
artifactory_access_token = var.artifactory_access_token

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.8"
17+
version = "1.0.10"
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.8"
29+
version = "1.0.10"
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.8"
47+
version = "1.0.10"
4848
agent_id = coder_agent.example.id
4949
nvm_version = "v0.39.7"
5050
nvm_install_prefix = "/opt/nvm"

vscode-web/README.md

Lines changed: 4 additions & 4 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.8"
17+
version = "1.0.10"
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.8"
32+
version = "1.0.10"
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.8"
45+
version = "1.0.10"
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.8"
59+
version = "1.0.10"
6060
agent_id = coder_agent.example.id
6161
extensions = ["dracula-theme.theme-dracula"]
6262
settings = {

0 commit comments

Comments
 (0)