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

Commit acab643

Browse files
matifalimafredri
andauthored
chore: bump version to 1.0.2 and add script to update them automatically. (#128)
Co-authored-by: Mathias Fredriksson <mafredri@gmail.com>
1 parent f16d7ca commit acab643

File tree

29 files changed

+127
-81
lines changed

29 files changed

+127
-81
lines changed

.sample/README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ tags: [helper]
1313

1414
```tf
1515
module "MODULE_NAME" {
16-
source = "registry.coder.com/modules/MODULE_NAME/coder"
17-
version = "1.0.0"
16+
source = "registry.coder.com/modules/MODULE_NAME/coder"
17+
version = "1.0.2"
1818
}
1919
```
2020

@@ -28,9 +28,9 @@ Install the Dracula theme from [OpenVSX](https://open-vsx.org/):
2828

2929
```tf
3030
module "MODULE_NAME" {
31-
source = "registry.coder.com/modules/MODULE_NAME/coder"
32-
version = "1.0.0"
33-
agent_id = coder_agent.example.id
31+
source = "registry.coder.com/modules/MODULE_NAME/coder"
32+
version = "1.0.2"
33+
agent_id = coder_agent.example.id
3434
extensions = [
3535
"dracula-theme.theme-dracula"
3636
]
@@ -45,11 +45,11 @@ Configure VS Code's [settings.json](https://code.visualstudio.com/docs/getstarte
4545

4646
```tf
4747
module "MODULE_NAME" {
48-
source = "registry.coder.com/modules/MODULE_NAME/coder"
49-
version = "1.0.0"
50-
agent_id = coder_agent.example.id
48+
source = "registry.coder.com/modules/MODULE_NAME/coder"
49+
version = "1.0.2"
50+
agent_id = coder_agent.example.id
5151
extensions = [ "dracula-theme.theme-dracula" ]
52-
settings = {
52+
settings = {
5353
"workbench.colorTheme" = "Dracula"
5454
}
5555
}
@@ -61,9 +61,9 @@ Run code-server in the background, don't fetch it from GitHub:
6161

6262
```tf
6363
module "MODULE_NAME" {
64-
source = "registry.coder.com/modules/MODULE_NAME/coder"
65-
version = "1.0.0"
64+
source = "registry.coder.com/modules/MODULE_NAME/coder"
65+
version = "1.0.2"
6666
agent_id = coder_agent.example.id
67-
offline = true
67+
offline = true
6868
}
6969
```

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ e.g.
1717
```tf
1818
module "code-server" {
1919
source = "registry.coder.com/modules/code-server/coder"
20-
version = "1.0.0"
20+
version = "1.0.2"
2121
agent_id = coder_agent.main.id
2222
}
2323
```

aws-region/README.md

Lines changed: 5 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.0"
20+
version = "1.0.2"
2121
default = "us-east-1"
2222
}
2323
@@ -37,11 +37,13 @@ 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.0"
40+
version = "1.0.2"
4141
default = "ap-south-1"
42+
4243
custom_names = {
4344
"ap-south-1" : "Awesome Mumbai!"
4445
}
46+
4547
custom_icons = {
4648
"ap-south-1" : "/emojis/1f33a.png"
4749
}
@@ -61,7 +63,7 @@ Hide the Asia Pacific regions Seoul and Osaka:
6163
```tf
6264
module "aws-region" {
6365
source = "registry.coder.com/modules/aws-region/coder"
64-
version = "1.0.0"
66+
version = "1.0.2"
6567
exclude = ["ap-northeast-2", "ap-northeast-3"]
6668
}
6769

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.0"
17+
version = "1.0.2"
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.0"
37+
version = "1.0.2"
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.0"
60+
version = "1.0.2"
6161
exclude = [
6262
"australia",
6363
"australiacentral2",

bun.lockb

1.89 KB
Binary file not shown.

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.0"
17+
version = "1.0.2"
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.0"
31+
version = "1.0.2"
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.0"
44+
version = "1.0.2"
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 "settings" {
6060
source = "registry.coder.com/modules/code-server/coder"
61-
version = "1.0.0"
61+
version = "1.0.2"
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 "settings" {
7676
source = "registry.coder.com/modules/code-server/coder"
77-
version = "1.0.0"
77+
version = "1.0.2"
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 "settings" {
8989
source = "registry.coder.com/modules/code-server/coder"
90-
version = "1.0.0"
90+
version = "1.0.2"
9191
agent_id = coder_agent.example.id
9292
offline = true
9393
}

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.0"
17+
version = "1.0.2"
1818
agent_id = coder_agent.example.id
1919
}
2020
```

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.0"
17+
version = "1.0.2"
1818
agent_id = coder_agent.example.id
1919
}
2020
```

exoscale-instance-type/README.md

Lines changed: 5 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.0"
20+
version = "1.0.2"
2121
default = "standard.medium"
2222
}
2323
@@ -45,11 +45,13 @@ 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.0"
48+
version = "1.0.2"
4949
default = "standard.medium"
50+
5051
custom_names = {
5152
"standard.medium" : "Mittlere Instanz" # German translation
5253
}
54+
5355
custom_descriptions = {
5456
"standard.medium" : "4 GB Arbeitsspeicher, 2 Kerne, 10 - 400 GB Festplatte" # German translation
5557
}
@@ -77,7 +79,7 @@ Show only gpu1 types
7779
```tf
7880
module "exoscale-instance-type" {
7981
source = "registry.coder.com/modules/exoscale-instance-type/coder"
80-
version = "1.0.0"
82+
version = "1.0.2"
8183
default = "gpu.large"
8284
type_category = ["gpu"]
8385
exclude = [

exoscale-zone/README.md

Lines changed: 5 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.0"
20+
version = "1.0.2"
2121
default = "ch-dk-2"
2222
}
2323
@@ -44,11 +44,13 @@ 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.0"
47+
version = "1.0.2"
4848
default = "at-vie-1"
49+
4950
custom_names = {
5051
"at-vie-1" : "Home Vienna"
5152
}
53+
5254
custom_icons = {
5355
"at-vie-1" : "/emojis/1f3e0.png"
5456
}
@@ -74,7 +76,7 @@ Hide the Switzerland zones Geneva and Zurich
7476
```tf
7577
module "exoscale-zone" {
7678
source = "registry.coder.com/modules/exoscale-zone/coder"
77-
version = "1.0.0"
79+
version = "1.0.2"
7880
exclude = ["ch-gva-2", "ch-dk-2"]
7981
}
8082

0 commit comments

Comments
 (0)