chore: bump version to 1.0.2 and add script to update them automatically. (#128)

Co-authored-by: Mathias Fredriksson <mafredri@gmail.com>
This commit is contained in:
Muhammad Atif Ali
2024-01-30 17:51:31 +03:00
committed by GitHub
parent f16d7ca3f5
commit acab6437bc
29 changed files with 129 additions and 83 deletions

View File

@@ -16,7 +16,7 @@ We can use the simplest format here, only adding a default selection as the `atl
```tf
module "fly-region" {
source = "registry.coder.com/modules/fly-region/coder"
version = "1.0.0"
version = "1.0.2"
default = "atl"
}
```
@@ -32,7 +32,7 @@ The regions argument can be used to display only the desired regions in the Code
```tf
module "fly-region" {
source = "registry.coder.com/modules/fly-region/coder"
version = "1.0.0"
version = "1.0.2"
default = "ams"
regions = ["ams", "arn", "atl"]
}
@@ -47,11 +47,13 @@ Set custom icons and names with their respective maps.
```tf
module "fly-region" {
source = "registry.coder.com/modules/fly-region/coder"
version = "1.0.0"
version = "1.0.2"
default = "ams"
custom_icons = {
"ams" = "/emojis/1f90e.png"
}
custom_names = {
"ams" = "We love the Netherlands!"
}