From f0ccb20846e83918b05f56c5493fbddd9e1e3596 Mon Sep 17 00:00:00 2001 From: Michael Suchacz <203725896+ibetitsmike@users.noreply.github.com> Date: Mon, 10 Nov 2025 14:41:36 +0100 Subject: [PATCH] fix: bump version in README.md (#532) ## Description ## Type of Change - [ ] New module - [ ] New template - [x] Bug fix - [ ] Feature/enhancement - [ ] Documentation - [ ] Other ## Module Information **Path:** `registry/[namespace]/modules/[module-name]` **New version:** `v1.0.0` **Breaking change:** [ ] Yes [ ] No ## Template Information **Path:** `registry/[namespace]/templates/[template-name]` ## Testing & Validation - [ ] Tests pass (`bun test`) - [ ] Code formatted (`bun fmt`) - [ ] Changes tested locally ## Related Issues --- registry/coder/modules/cmux/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/registry/coder/modules/cmux/README.md b/registry/coder/modules/cmux/README.md index 503bbea2..c1ced283 100644 --- a/registry/coder/modules/cmux/README.md +++ b/registry/coder/modules/cmux/README.md @@ -14,7 +14,7 @@ Automatically install and run [cmux](https://github.com/coder/cmux) in a Coder w module "cmux" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/cmux/coder" - version = "1.0.0" + version = "1.0.2" agent_id = coder_agent.example.id } ``` @@ -35,7 +35,7 @@ module "cmux" { module "cmux" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/cmux/coder" - version = "1.0.0" + version = "1.0.2" agent_id = coder_agent.example.id } ``` @@ -46,7 +46,7 @@ module "cmux" { module "cmux" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/cmux/coder" - version = "1.0.0" + version = "1.0.2" agent_id = coder_agent.example.id # Default is "latest"; set to a specific version to pin install_version = "0.4.0" @@ -59,7 +59,7 @@ module "cmux" { module "cmux" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/cmux/coder" - version = "1.0.0" + version = "1.0.2" agent_id = coder_agent.example.id port = 8080 } @@ -73,7 +73,7 @@ Run an existing copy of cmux if found, otherwise install from npm: module "cmux" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/cmux/coder" - version = "1.0.0" + version = "1.0.2" agent_id = coder_agent.example.id use_cached = true } @@ -87,7 +87,7 @@ Run without installing from the network (requires cmux to be pre-installed): module "cmux" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/cmux/coder" - version = "1.0.0" + version = "1.0.2" agent_id = coder_agent.example.id install = false }