Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Type-safe agent execution for mission-critical environments.
Scala 3 + ZIO on the battle-tested TypeScript agent ecosystem.

> SDK baseline `@anthropic-ai/claude-agent-sdk@^0.2.90` | Scalagent `0.5.0` | Scala `3.8.3` | Bun or Node.js 18+
> SDK baseline `@anthropic-ai/claude-agent-sdk@^0.2.90` | Scalagent `0.6.0` | Scala `3.8.3` | Bun or Node.js 18+

```scala
import com.tjclp.scalagent.*
Expand Down Expand Up @@ -188,13 +188,13 @@ val agent = ClaudeInterpreter.builder(claudeAgent)
### Mill

```scala
ivy"com.tjclp::scalagent::0.5.0"
ivy"com.tjclp::scalagent::0.6.0"
```

### SBT

```scala
libraryDependencies += "com.tjclp" %%% "scalagent" % "0.5.0"
libraryDependencies += "com.tjclp" %%% "scalagent" % "0.6.0"
```

### Maven
Expand All @@ -203,7 +203,7 @@ libraryDependencies += "com.tjclp" %%% "scalagent" % "0.5.0"
<dependency>
<groupId>com.tjclp</groupId>
<artifactId>scalagent_sjs1_3</artifactId>
<version>0.5.0</version>
<version>0.6.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ object agent extends BunScalaJSModule with BunPublishModule with PublishModule {
// Publishing configuration - read from PUBLISH_VERSION env var (set by CI)
// Task.Input ensures env var is re-evaluated each run (not cached)
override def publishVersion = Task.Input {
Task.env.get("PUBLISH_VERSION").getOrElse("0.5.1-SNAPSHOT")
Task.env.get("PUBLISH_VERSION").getOrElse("0.6.0")
}

// Skip scaladoc generation - Scala.js facades cause doc errors
Expand Down
Loading