File tree 5 files changed +8
-49
lines changed
5 files changed +8
-49
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Uses the [Coder Remote VS Code Extension](https://github.com/coder/cursor-coder)
16
16
``` tf
17
17
module "cursor" {
18
18
source = "registry.coder.com/modules/cursor/coder"
19
- version = "1.0.18 "
19
+ version = "1.0.19 "
20
20
agent_id = coder_agent.example.id
21
21
}
22
22
```
@@ -28,7 +28,7 @@ module "cursor" {
28
28
``` tf
29
29
module "cursor" {
30
30
source = "registry.coder.com/modules/cursor/coder"
31
- version = "1.0.18 "
31
+ version = "1.0.19 "
32
32
agent_id = coder_agent.example.id
33
33
folder = "/home/coder/project"
34
34
}
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ A module that adds Jupyter Notebook in your Coder template.
16
16
``` tf
17
17
module "jupyter-notebook" {
18
18
source = "registry.coder.com/modules/jupyter-notebook/coder"
19
- version = "1.0.8 "
19
+ version = "1.0.19 "
20
20
agent_id = coder_agent.example.id
21
21
}
22
22
```
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ A module that adds JupyterLab in your Coder template.
16
16
``` tf
17
17
module "jupyterlab" {
18
18
source = "registry.coder.com/modules/jupyterlab/coder"
19
- version = "1.0.8 "
19
+ version = "1.0.19 "
20
20
agent_id = coder_agent.example.id
21
21
}
22
22
```
Original file line number Diff line number Diff line change 7
7
set -euo pipefail
8
8
9
9
current_tag=$( git describe --tags --abbrev=0)
10
- previous_tag=$( git describe --tags --abbrev=0 $current_tag ^)
11
- mapfile -t changed_dirs < <( git diff --name-only " $previous_tag " ..." $current_tag " -- ' :!**/README.md' ' :!**/*.test.ts' | xargs dirname | grep -v ' ^\.' | sort -u)
12
10
13
- LATEST_TAG=$( git describe --abbrev=0 --tags | sed ' s/^v//' ) || exit $?
11
+ # Increment the patch version
12
+ LATEST_TAG=$( echo " $current_tag " | sed ' s/^v//' | awk -F. ' {print $1"."$2"."$3+1}' ) || exit $?
13
+
14
+ mapfile -t changed_dirs < <( git diff --name-only " $current_tag " -- ' :!**/README.md' ' :!**/*.test.ts' | xargs dirname | grep -v ' ^\.' | sort -u)
14
15
15
16
for dir in " ${changed_dirs[@]} " ; do
16
17
if [[ -f " $dir /README.md" ]]; then
You can’t perform that action at this time.
0 commit comments