chore(release): update version to 0.4.0-rc.2

This commit is contained in:
Nathan Flurry 2026-03-15 22:38:30 -07:00
parent bf543d225d
commit 56c80e6c9e
28 changed files with 37 additions and 37 deletions

View file

@ -56,7 +56,7 @@ Agents are installed lazily on first use. To avoid the cold-start delay, pre-ins
sandbox-agent install-agent --all
```
The `rivetdev/sandbox-agent:0.3.2-full` Docker image ships with all agents pre-installed.
The `rivetdev/sandbox-agent:0.4.0-rc.2-full` Docker image ships with all agents pre-installed.
## Production-ready agent orchestration

View file

@ -44,7 +44,7 @@ try {
}
```
The `daytona` provider uses the `rivetdev/sandbox-agent:0.3.2-full` image by default and starts the server automatically.
The `daytona` provider uses the `rivetdev/sandbox-agent:0.4.0-rc.2-full` image by default and starts the server automatically.
## Using snapshots for faster startup

View file

@ -15,11 +15,11 @@ Run the published full image with all supported agents pre-installed:
docker run --rm -p 3000:3000 \
-e ANTHROPIC_API_KEY="$ANTHROPIC_API_KEY" \
-e OPENAI_API_KEY="$OPENAI_API_KEY" \
rivetdev/sandbox-agent:0.3.2-full \
rivetdev/sandbox-agent:0.4.0-rc.2-full \
server --no-token --host 0.0.0.0 --port 3000
```
The `0.3.2-full` tag pins the exact version. The moving `full` tag is also published for contributors who want the latest full image.
The `0.4.0-rc.2-full` tag pins the exact version. The moving `full` tag is also published for contributors who want the latest full image.
## TypeScript with the Docker provider
@ -48,7 +48,7 @@ try {
}
```
The `docker` provider uses the `rivetdev/sandbox-agent:0.3.2-full` image by default. Override with `image`:
The `docker` provider uses the `rivetdev/sandbox-agent:0.4.0-rc.2-full` image by default. Override with `image`:
```typescript
docker({ image: "my-custom-image:latest" })

View file

@ -10,7 +10,7 @@
"license": {
"name": "Apache-2.0"
},
"version": "0.4.0-rc.1"
"version": "0.4.0-rc.2"
},
"servers": [
{

View file

@ -242,7 +242,7 @@ icon: "rocket"
docker run -p 2468:2468 \
-e ANTHROPIC_API_KEY="sk-ant-..." \
-e OPENAI_API_KEY="sk-..." \
rivetdev/sandbox-agent:0.3.2-full \
rivetdev/sandbox-agent:0.4.0-rc.2-full \
server --no-token --host 0.0.0.0 --port 2468
```
</Tab>