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

Commit 5344916

Browse files
authored
Update module versions to v1.0.3 (#159)
1 parent ac64af6 commit 5344916

File tree

5 files changed

+10
-17
lines changed

5 files changed

+10
-17
lines changed

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.2"
17+
version = "1.0.3"
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.2"
31+
version = "1.0.3"
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.2"
42+
version = "1.0.3"
4343
agent_id = coder_agent.example.id
4444
database_path = ".config/filebrowser.db"
4545
}

git-commit-signing/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This module has a chance of conflicting with the user's dotfiles / the personali
1919
```tf
2020
module "git-commit-signing" {
2121
source = "registry.coder.com/modules/git-commit-signing/coder"
22-
version = "1.0.2"
22+
version = "1.0.3"
2323
agent_id = coder_agent.example.id
2424
}
2525
```

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.2"
17+
version = "1.0.3"
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.2"
35+
version = "1.0.3"
3636
agent_id = coder_agent.example.id
3737
agent_name = "example"
3838
folder = "/home/coder/example"

update-version.sh

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,7 @@ set -euo pipefail
88

99
current_tag=$(git describe --tags --abbrev=0)
1010
previous_tag=$(git describe --tags --abbrev=0 $current_tag^)
11-
mapfile -t changed_files < <(git diff --name-only "$previous_tag" "$current_tag" | xargs dirname | sort -u | grep -v '^\.')
12-
13-
changed_dirs=()
14-
for file in $changed_files; do
15-
dir=$(dirname "$file")
16-
changed_dirs+=("$dir")
17-
done
18-
changed_dirs=($(printf "%s\n" "${changed_dirs[@]}" | sort -u))
11+
mapfile -t changed_dirs < <(git diff --name-only "$previous_tag"..."$current_tag" -- ':!**/README.md' ':!**/*.test.ts' | xargs dirname | grep -v '^\.' | sort -u)
1912

2013
LATEST_TAG=$(git describe --abbrev=0 --tags | sed 's/^v//') || exit $?
2114

@@ -33,4 +26,4 @@ for dir in "${changed_dirs[@]}"; do
3326
}
3427
}' "$file" > "$tmpfile" && mv "$tmpfile" "$file"
3528
fi
36-
done
29+
done

vscode-web/README.md

Lines changed: 2 additions & 2 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.2"
17+
version = "1.0.3"
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.2"
32+
version = "1.0.3"
3333
agent_id = coder_agent.example.id
3434
install_dir = "/home/coder/.vscode-web"
3535
folder = "/home/coder"

0 commit comments

Comments
 (0)