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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ The official Java library for accessing ModelArk on Volcengine and BytePlus. It
<dependency>
<groupId>com.volcengine</groupId>
<artifactId>ark-runtime</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
```

### Gradle

```groovy
implementation 'com.volcengine:ark-runtime:0.6.0'
implementation 'com.volcengine:ark-runtime:0.7.0'
```

## Choose Volcengine or BytePlus
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.0
0.7.0
4 changes: 2 additions & 2 deletions examples/self_hosted_mcp_worker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ creating a Session. Printing declarations does not update the Agent
automatically. The same MCP tool list is registered with the worker for
execution, and the example reads every `tools/list` page.

Build the standalone example after `ark-runtime` and `ark-runtime-mcp` 0.6.0
Build the standalone example after `ark-runtime` and `ark-runtime-mcp` 0.7.0
are available in Maven Central or installed in the local Maven repository:

```bash
Expand Down Expand Up @@ -38,7 +38,7 @@ following control-plane fields manually:
# Optional, for example when testing against staging:
# export ARK_BASE_URL=https://example.com/api/v3

JAR=examples/self_hosted_mcp_worker/target/ark-runtime-self-hosted-mcp-example-0.6.0-jar-with-dependencies.jar
JAR=examples/self_hosted_mcp_worker/target/ark-runtime-self-hosted-mcp-example-0.7.0-jar-with-dependencies.jar
java -jar "$JAR" -- java -cp "$JAR" \
com.volcengine.ark.runtime.examples.selfhostedmcp.McpEchoServer
```
Expand Down
4 changes: 2 additions & 2 deletions examples/self_hosted_mcp_worker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

<groupId>com.volcengine</groupId>
<artifactId>ark-runtime-self-hosted-mcp-example</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>17</maven.compiler.release>
<ark-runtime.version>0.6.0</ark-runtime.version>
<ark-runtime.version>0.7.0</ark-runtime.version>
<maven-assembly-plugin.version>3.7.1</maven-assembly-plugin.version>
<maven-compiler-plugin.version>3.14.1</maven-compiler-plugin.version>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion mcp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Use the same release version for the core SDK and this adapter:
<dependency>
<groupId>com.volcengine</groupId>
<artifactId>ark-runtime-mcp</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions mcp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.volcengine</groupId>
<artifactId>ark-runtime-mcp</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
<packaging>jar</packaging>

<name>ark-runtime-mcp</name>
Expand Down Expand Up @@ -37,7 +37,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>17</maven.compiler.release>
<ark-runtime.version>0.6.0</ark-runtime.version>
<ark-runtime.version>0.7.0</ark-runtime.version>
<mcp.version>2.0.0</mcp.version>
<jackson.annotations.version>2.20</jackson.annotations.version>
<jackson.version>2.20.0</jackson.version>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.volcengine</groupId>
<artifactId>ark-runtime</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
<packaging>jar</packaging>

<name>ark-runtime</name>
Expand Down
Loading