Skip to content

Commit f0ccb20

Browse files
authored
fix: bump version in README.md (#532)
## Description <!-- Briefly describe what this PR does and why --> ## Type of Change - [ ] New module - [ ] New template - [x] Bug fix - [ ] Feature/enhancement - [ ] Documentation - [ ] Other ## Module Information <!-- Delete this section if not applicable --> **Path:** `registry/[namespace]/modules/[module-name]` **New version:** `v1.0.0` **Breaking change:** [ ] Yes [ ] No ## Template Information <!-- Delete this section if not applicable --> **Path:** `registry/[namespace]/templates/[template-name]` ## Testing & Validation - [ ] Tests pass (`bun test`) - [ ] Code formatted (`bun fmt`) - [ ] Changes tested locally ## Related Issues <!-- Link related issues or write "None" if not applicable -->
1 parent e357fcf commit f0ccb20

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

registry/coder/modules/cmux/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Automatically install and run [cmux](https://github.com/coder/cmux) in a Coder w
1414
module "cmux" {
1515
count = data.coder_workspace.me.start_count
1616
source = "registry.coder.com/coder/cmux/coder"
17-
version = "1.0.0"
17+
version = "1.0.2"
1818
agent_id = coder_agent.example.id
1919
}
2020
```
@@ -35,7 +35,7 @@ module "cmux" {
3535
module "cmux" {
3636
count = data.coder_workspace.me.start_count
3737
source = "registry.coder.com/coder/cmux/coder"
38-
version = "1.0.0"
38+
version = "1.0.2"
3939
agent_id = coder_agent.example.id
4040
}
4141
```
@@ -46,7 +46,7 @@ module "cmux" {
4646
module "cmux" {
4747
count = data.coder_workspace.me.start_count
4848
source = "registry.coder.com/coder/cmux/coder"
49-
version = "1.0.0"
49+
version = "1.0.2"
5050
agent_id = coder_agent.example.id
5151
# Default is "latest"; set to a specific version to pin
5252
install_version = "0.4.0"
@@ -59,7 +59,7 @@ module "cmux" {
5959
module "cmux" {
6060
count = data.coder_workspace.me.start_count
6161
source = "registry.coder.com/coder/cmux/coder"
62-
version = "1.0.0"
62+
version = "1.0.2"
6363
agent_id = coder_agent.example.id
6464
port = 8080
6565
}
@@ -73,7 +73,7 @@ Run an existing copy of cmux if found, otherwise install from npm:
7373
module "cmux" {
7474
count = data.coder_workspace.me.start_count
7575
source = "registry.coder.com/coder/cmux/coder"
76-
version = "1.0.0"
76+
version = "1.0.2"
7777
agent_id = coder_agent.example.id
7878
use_cached = true
7979
}
@@ -87,7 +87,7 @@ Run without installing from the network (requires cmux to be pre-installed):
8787
module "cmux" {
8888
count = data.coder_workspace.me.start_count
8989
source = "registry.coder.com/coder/cmux/coder"
90-
version = "1.0.0"
90+
version = "1.0.2"
9191
agent_id = coder_agent.example.id
9292
install = false
9393
}

0 commit comments

Comments
 (0)