diff --git a/README.md b/README.md index 52cd60a..79e9b9e 100644 --- a/README.md +++ b/README.md @@ -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.* @@ -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 @@ -203,7 +203,7 @@ libraryDependencies += "com.tjclp" %%% "scalagent" % "0.5.0" com.tjclp scalagent_sjs1_3 - 0.5.0 + 0.6.0 ``` diff --git a/build.mill b/build.mill index ec4e972..89f0288 100644 --- a/build.mill +++ b/build.mill @@ -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