Skip to content

Commit 49df203

Browse files
chore: bump version to 1.0.12 in README.md files (coder#230)
Co-authored-by: matifali <matifali@users.noreply.github.com>
1 parent 8766c67 commit 49df203

File tree

10 files changed

+40
-40
lines changed

10 files changed

+40
-40
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.10"
20+
version = "1.0.12"
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.10"
40+
version = "1.0.12"
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.10"
66+
version = "1.0.12"
6767
exclude = ["ap-northeast-2", "ap-northeast-3"]
6868
}
6969

azure-region/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This module adds a parameter with all Azure regions, allowing developers to sele
1414
```tf
1515
module "azure_region" {
1616
source = "registry.coder.com/modules/azure-region/coder"
17-
version = "1.0.2"
17+
version = "1.0.12"
1818
default = "eastus"
1919
}
2020
@@ -34,7 +34,7 @@ Change the display name and icon for a region using the corresponding maps:
3434
```tf
3535
module "azure-region" {
3636
source = "registry.coder.com/modules/azure-region/coder"
37-
version = "1.0.2"
37+
version = "1.0.12"
3838
custom_names = {
3939
"australia" : "Go Australia!"
4040
}
@@ -57,7 +57,7 @@ Hide all regions in Australia except australiacentral:
5757
```tf
5858
module "azure-region" {
5959
source = "registry.coder.com/modules/azure-region/coder"
60-
version = "1.0.2"
60+
version = "1.0.12"
6161
exclude = [
6262
"australia",
6363
"australiacentral2",

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.10"
17+
version = "1.0.12"
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.10"
31+
version = "1.0.12"
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.10"
44+
version = "1.0.12"
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.10"
61+
version = "1.0.12"
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.10"
77+
version = "1.0.12"
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.10"
92+
version = "1.0.12"
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.10"
104+
version = "1.0.12"
105105
agent_id = coder_agent.example.id
106106
offline = true
107107
}

dotfiles/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Allow developers to optionally bring their own [dotfiles repository](https://dot
1414
```tf
1515
module "dotfiles" {
1616
source = "registry.coder.com/modules/dotfiles/coder"
17-
version = "1.0.2"
17+
version = "1.0.12"
1818
agent_id = coder_agent.example.id
1919
}
2020
```

exoscale-instance-type/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 "exoscale-instance-type" {
1919
source = "registry.coder.com/modules/exoscale-instance-type/coder"
20-
version = "1.0.2"
20+
version = "1.0.12"
2121
default = "standard.medium"
2222
}
2323
@@ -45,7 +45,7 @@ Change the display name a type using the corresponding maps:
4545
```tf
4646
module "exoscale-instance-type" {
4747
source = "registry.coder.com/modules/exoscale-instance-type/coder"
48-
version = "1.0.2"
48+
version = "1.0.12"
4949
default = "standard.medium"
5050
5151
custom_names = {
@@ -79,7 +79,7 @@ Show only gpu1 types
7979
```tf
8080
module "exoscale-instance-type" {
8181
source = "registry.coder.com/modules/exoscale-instance-type/coder"
82-
version = "1.0.2"
82+
version = "1.0.12"
8383
default = "gpu.large"
8484
type_category = ["gpu"]
8585
exclude = [

exoscale-zone/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 "exoscale-zone" {
1919
source = "registry.coder.com/modules/exoscale-zone/coder"
20-
version = "1.0.2"
20+
version = "1.0.12"
2121
default = "ch-dk-2"
2222
}
2323
@@ -44,7 +44,7 @@ Change the display name and icon for a zone using the corresponding maps:
4444
```tf
4545
module "exoscale-zone" {
4646
source = "registry.coder.com/modules/exoscale-zone/coder"
47-
version = "1.0.2"
47+
version = "1.0.12"
4848
default = "at-vie-1"
4949
5050
custom_names = {
@@ -76,7 +76,7 @@ Hide the Switzerland zones Geneva and Zurich
7676
```tf
7777
module "exoscale-zone" {
7878
source = "registry.coder.com/modules/exoscale-zone/coder"
79-
version = "1.0.2"
79+
version = "1.0.12"
8080
exclude = ["ch-gva-2", "ch-dk-2"]
8181
}
8282

gcp-region/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This module adds Google Cloud Platform regions to your Coder template.
1414
```tf
1515
module "gcp_region" {
1616
source = "registry.coder.com/modules/gcp-region/coder"
17-
version = "1.0.2"
17+
version = "1.0.12"
1818
regions = ["us", "europe"]
1919
}
2020
@@ -34,7 +34,7 @@ Note: setting `gpu_only = true` and using a default region without GPU support,
3434
```tf
3535
module "gcp_region" {
3636
source = "registry.coder.com/modules/gcp-region/coder"
37-
version = "1.0.2"
37+
version = "1.0.12"
3838
default = ["us-west1-a"]
3939
regions = ["us-west1"]
4040
gpu_only = false
@@ -50,7 +50,7 @@ resource "google_compute_instance" "example" {
5050
```tf
5151
module "gcp_region" {
5252
source = "registry.coder.com/modules/gcp-region/coder"
53-
version = "1.0.2"
53+
version = "1.0.12"
5454
regions = ["europe-west"]
5555
single_zone_per_region = false
5656
}
@@ -65,7 +65,7 @@ resource "google_compute_instance" "example" {
6565
```tf
6666
module "gcp_region" {
6767
source = "registry.coder.com/modules/gcp-region/coder"
68-
version = "1.0.2"
68+
version = "1.0.12"
6969
regions = ["us", "europe"]
7070
gpu_only = true
7171
single_zone_per_region = true

git-clone/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This module allows you to automatically clone a repository by URL and skip if it
1414
```tf
1515
module "git-clone" {
1616
source = "registry.coder.com/modules/git-clone/coder"
17-
version = "1.0.2"
17+
version = "1.0.12"
1818
agent_id = coder_agent.example.id
1919
url = "https://github.com/coder/coder"
2020
}
@@ -27,7 +27,7 @@ module "git-clone" {
2727
```tf
2828
module "git-clone" {
2929
source = "registry.coder.com/modules/git-clone/coder"
30-
version = "1.0.2"
30+
version = "1.0.12"
3131
agent_id = coder_agent.example.id
3232
url = "https://github.com/coder/coder"
3333
base_dir = "~/projects/coder"
@@ -41,7 +41,7 @@ To use with [Git Authentication](https://coder.com/docs/v2/latest/admin/git-prov
4141
```tf
4242
module "git-clone" {
4343
source = "registry.coder.com/modules/git-clone/coder"
44-
version = "1.0.2"
44+
version = "1.0.12"
4545
agent_id = coder_agent.example.id
4646
url = "https://github.com/coder/coder"
4747
}
@@ -66,15 +66,15 @@ data "coder_parameter" "git_repo" {
6666
# Clone the repository for branch `feat/example`
6767
module "git_clone" {
6868
source = "registry.coder.com/modules/git-clone/coder"
69-
version = "1.0.11"
69+
version = "1.0.12"
7070
agent_id = coder_agent.example.id
7171
url = data.coder_parameter.git_repo.value
7272
}
7373
7474
# Create a code-server instance for the cloned repository
7575
module "code-server" {
7676
source = "registry.coder.com/modules/code-server/coder"
77-
version = "1.0.11"
77+
version = "1.0.12"
7878
agent_id = coder_agent.example.id
7979
order = 1
8080
folder = "/home/${local.username}/${module.git_clone.folder_name}"
@@ -98,7 +98,7 @@ Configuring `git-clone` for a self-hosted GitHub Enterprise Server running at `g
9898
```tf
9999
module "git-clone" {
100100
source = "registry.coder.com/modules/git-clone/coder"
101-
version = "1.0.11"
101+
version = "1.0.12"
102102
agent_id = coder_agent.example.id
103103
url = "https://github.example.com/coder/coder/tree/feat/example"
104104
git_providers = {
@@ -116,7 +116,7 @@ To GitLab clone with a specific branch like `feat/example`
116116
```tf
117117
module "git-clone" {
118118
source = "registry.coder.com/modules/git-clone/coder"
119-
version = "1.0.11"
119+
version = "1.0.12"
120120
agent_id = coder_agent.example.id
121121
url = "https://gitlab.com/coder/coder/-/tree/feat/example"
122122
}
@@ -127,7 +127,7 @@ Configuring `git-clone` for a self-hosted GitLab running at `gitlab.example.com`
127127
```tf
128128
module "git-clone" {
129129
source = "registry.coder.com/modules/git-clone/coder"
130-
version = "1.0.11"
130+
version = "1.0.12"
131131
agent_id = coder_agent.example.id
132132
url = "https://gitlab.example.com/coder/coder/-/tree/feat/example"
133133
git_providers = {
@@ -147,7 +147,7 @@ For example, to clone the `feat/example` branch:
147147
```tf
148148
module "git-clone" {
149149
source = "registry.coder.com/modules/git-clone/coder"
150-
version = "1.0.11"
150+
version = "1.0.12"
151151
agent_id = coder_agent.example.id
152152
url = "https://github.com/coder/coder"
153153
branch_name = "feat/example"

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.3"
17+
version = "1.0.12"
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.3"
31+
version = "1.0.12"
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.3"
44+
version = "1.0.12"
4545
agent_id = coder_agent.example.id
4646
allow_username_change = false
4747
allow_email_change = false

jetbrains-gateway/README.md

Lines changed: 4 additions & 4 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.11"
17+
version = "1.0.12"
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.11"
35+
version = "1.0.12"
3636
agent_id = coder_agent.example.id
3737
agent_name = "example"
3838
folder = "/home/coder/example"
@@ -46,7 +46,7 @@ module "jetbrains_gateway" {
4646
```tf
4747
module "jetbrains_gateway" {
4848
source = "registry.coder.com/modules/jetbrains-gateway/coder"
49-
version = "1.0.11"
49+
version = "1.0.12"
5050
agent_id = coder_agent.example.id
5151
agent_name = "example"
5252
folder = "/home/coder/example"
@@ -61,7 +61,7 @@ module "jetbrains_gateway" {
6161
```tf
6262
module "jetbrains_gateway" {
6363
source = "registry.coder.com/modules/jetbrains-gateway/coder"
64-
version = "1.0.11"
64+
version = "1.0.12"
6565
agent_id = coder_agent.example.id
6666
agent_name = "example"
6767
folder = "/home/coder/example"

0 commit comments

Comments
 (0)