Skip to content

Commit 5bbc449

Browse files
committed
chore: bump module versions (patch)
1 parent cb53468 commit 5bbc449

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

registry/coder/modules/agentapi/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The AgentAPI module is a building block for modules that need to run an AgentAPI
1616
```tf
1717
module "agentapi" {
1818
source = "registry.coder.com/coder/agentapi/coder"
19-
version = "1.0.1"
19+
version = "1.0.2"
2020
2121
agent_id = var.agent_id
2222
web_app_slug = local.app_slug

registry/coder/modules/aider/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Run [Aider](https://aider.chat) AI pair programming in your workspace. This modu
1313
```tf
1414
module "aider" {
1515
source = "registry.coder.com/coder/aider/coder"
16-
version = "1.1.1"
16+
version = "1.1.2"
1717
agent_id = coder_agent.example.id
1818
}
1919
```
@@ -47,7 +47,7 @@ variable "anthropic_api_key" {
4747
module "aider" {
4848
count = data.coder_workspace.me.start_count
4949
source = "registry.coder.com/coder/aider/coder"
50-
version = "1.1.1"
50+
version = "1.1.2"
5151
agent_id = coder_agent.example.id
5252
ai_api_key = var.anthropic_api_key
5353
}
@@ -72,7 +72,7 @@ variable "openai_api_key" {
7272
module "aider" {
7373
count = data.coder_workspace.me.start_count
7474
source = "registry.coder.com/coder/aider/coder"
75-
version = "1.1.1"
75+
version = "1.1.2"
7676
agent_id = coder_agent.example.id
7777
use_tmux = true
7878
ai_provider = "openai"
@@ -93,7 +93,7 @@ variable "custom_api_key" {
9393
module "aider" {
9494
count = data.coder_workspace.me.start_count
9595
source = "registry.coder.com/coder/aider/coder"
96-
version = "1.1.1"
96+
version = "1.1.2"
9797
agent_id = coder_agent.example.id
9898
ai_provider = "custom"
9999
custom_env_var_name = "MY_CUSTOM_API_KEY"
@@ -110,7 +110,7 @@ You can extend Aider's capabilities by adding custom extensions:
110110
module "aider" {
111111
count = data.coder_workspace.me.start_count
112112
source = "registry.coder.com/coder/aider/coder"
113-
version = "1.1.1"
113+
version = "1.1.2"
114114
agent_id = coder_agent.example.id
115115
ai_api_key = var.anthropic_api_key
116116
@@ -189,7 +189,7 @@ data "coder_parameter" "ai_prompt" {
189189
module "aider" {
190190
count = data.coder_workspace.me.start_count
191191
source = "registry.coder.com/coder/aider/coder"
192-
version = "1.1.1"
192+
version = "1.1.2"
193193
agent_id = coder_agent.example.id
194194
ai_api_key = var.anthropic_api_key
195195
task_prompt = data.coder_parameter.ai_prompt.value

registry/coder/modules/amazon-q/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Run [Amazon Q](https://aws.amazon.com/q/) in your workspace to access Amazon's A
1313
```tf
1414
module "amazon-q" {
1515
source = "registry.coder.com/coder/amazon-q/coder"
16-
version = "1.1.1"
16+
version = "1.1.2"
1717
agent_id = coder_agent.example.id
1818
1919
# Required: see below for how to generate
@@ -82,7 +82,7 @@ module "amazon-q" {
8282
```tf
8383
module "amazon-q" {
8484
source = "registry.coder.com/coder/amazon-q/coder"
85-
version = "1.1.1"
85+
version = "1.1.2"
8686
agent_id = coder_agent.example.id
8787
experiment_auth_tarball = var.amazon_q_auth_tarball
8888
experiment_use_tmux = true
@@ -94,7 +94,7 @@ module "amazon-q" {
9494
```tf
9595
module "amazon-q" {
9696
source = "registry.coder.com/coder/amazon-q/coder"
97-
version = "1.1.1"
97+
version = "1.1.2"
9898
agent_id = coder_agent.example.id
9999
experiment_auth_tarball = var.amazon_q_auth_tarball
100100
experiment_report_tasks = true
@@ -106,7 +106,7 @@ module "amazon-q" {
106106
```tf
107107
module "amazon-q" {
108108
source = "registry.coder.com/coder/amazon-q/coder"
109-
version = "1.1.1"
109+
version = "1.1.2"
110110
agent_id = coder_agent.example.id
111111
experiment_auth_tarball = var.amazon_q_auth_tarball
112112
experiment_pre_install_script = "echo Pre-install!"

0 commit comments

Comments
 (0)