Skip to content

Commit d90abcf

Browse files
committed
bump to 1.0.0
Change-Id: Ia7e32fb1b0ab9e19672d56fb4e31dbdbec73ab0f
1 parent 7ef7ab1 commit d90abcf

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ Add the following dependency to your `pom.xml`:
6464
<dependency>
6565
<groupId>io.agentscope</groupId>
6666
<artifactId>spring-boot-starter-runtime-a2a</artifactId>
67-
<version>1.0.0-BETA1</version>
67+
<version>1.0.0</version>
6868
</dependency>
6969

7070
<!-- Add AgentScope Agent adapter dependency -->
7171
<dependency>
7272
<groupId>io.agentscope</groupId>
7373
<artifactId>agentscope-runtime-agentscope</artifactId>
74-
<version>1.0.0-BETA1</version>
74+
<version>1.0.0</version>
7575
</dependency>
7676
```
7777

README_zh.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@
6464
<dependency>
6565
<groupId>io.agentscope</groupId>
6666
<artifactId>spring-boot-starter-runtime-a2a</artifactId>
67-
<version>1.0.0-BETA1</version>
67+
<version>1.0.0</version>
6868
</dependency>
6969

7070
<!-- Add AgentScope Agent adapter dependency -->
7171
<dependency>
7272
<groupId>io.agentscope</groupId>
7373
<artifactId>agentscope-runtime-agentscope</artifactId>
74-
<version>1.0.0-BETA1</version>
74+
<version>1.0.0</version>
7575
</dependency>
7676
```
7777

agents/agentscope/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>io.agentscope</groupId>
2626
<artifactId>agentscope-runtime-core</artifactId>
27-
<version>1.0.0-SNAPSHOT</version>
27+
<version>1.0.0</version>
2828
</dependency>
2929

3030
<dependency>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</parent>
1010

1111
<artifactId>agentscope-runtime-core</artifactId>
12-
<version>1.0.0-SNAPSHOT</version>
12+
<version>1.0.0</version>
1313
<packaging>jar</packaging>
1414
<name>AgentScope Runtime Core</name>
1515
<description>Java Implementation for AgentScope Runtime</description>

examples/browser_use_fullstack_runtime/backend/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@
5757
<dependency>
5858
<groupId>io.agentscope</groupId>
5959
<artifactId>spring-boot-starter-runtime-a2a</artifactId>
60-
<version>1.0.0-SNAPSHOT</version>
60+
<version>1.0.0</version>
6161
</dependency>
6262
<dependency>
6363
<groupId>io.agentscope</groupId>
6464
<artifactId>agentscope-runtime-agentscope</artifactId>
65-
<version>1.0.0-SNAPSHOT</version>
65+
<version>1.0.0</version>
6666
</dependency>
6767

6868

examples/simple_agent_use_examples/agentscope_use_example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@
4444
<dependency>
4545
<groupId>io.agentscope</groupId>
4646
<artifactId>agentscope-runtime-agentscope</artifactId>
47-
<version>1.0.0-SNAPSHOT</version>
47+
<version>1.0.0</version>
4848
</dependency>
4949

5050
<dependency>
5151
<groupId>io.agentscope</groupId>
5252
<artifactId>agentscope-runtime-web</artifactId>
53-
<version>1.0.0-SNAPSHOT</version>
53+
<version>1.0.0</version>
5454
</dependency>
5555

5656
<!-- Logging -->

examples/simple_agent_use_examples/custom_sandbox_example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@
4444
<dependency>
4545
<groupId>io.agentscope</groupId>
4646
<artifactId>agentscope-runtime-agentscope</artifactId>
47-
<version>1.0.0-BETA1</version>
47+
<version>1.0.0</version>
4848
</dependency>
4949

5050
<dependency>
5151
<groupId>io.agentscope</groupId>
5252
<artifactId>agentscope-runtime-web</artifactId>
53-
<version>1.0.0-BETA1</version>
53+
<version>1.0.0</version>
5454
</dependency>
5555

5656
<!-- Logging -->

examples/simple_sandbox_tool_example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<dependency>
4444
<groupId>io.agentscope</groupId>
4545
<artifactId>agentscope-runtime-agentscope</artifactId>
46-
<version>1.0.0-SNAPSHOT</version>
46+
<version>1.0.0</version>
4747
</dependency>
4848
</dependencies>
4949

examples/structured_sandbox_tool_example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<dependency>
4444
<groupId>io.agentscope</groupId>
4545
<artifactId>agentscope-runtime-agentscope</artifactId>
46-
<version>1.0.0-SNAPSHOT</version>
46+
<version>1.0.0</version>
4747
</dependency>
4848
</dependencies>
4949

maven_plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
</parent>
2626

2727
<artifactId>deployer-maven-plugin</artifactId>
28-
<version>1.0.0-SNAPSHOT</version>
28+
<version>1.0.0</version>
2929
<packaging>maven-plugin</packaging>
3030

3131
<name>AgentScope Deployer Maven Plugin</name>

0 commit comments

Comments
 (0)