Skip to content

Commit 08fdb10

Browse files
authored
bump version to v1.0.2 (#87)
1 parent 12b25af commit 08fdb10

File tree

14 files changed

+33
-25
lines changed

14 files changed

+33
-25
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.1</version>
67+
<version>1.0.2</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.1</version>
74+
<version>1.0.2</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.1</version>
67+
<version>1.0.2</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.1</version>
74+
<version>1.0.2</version>
7575
</dependency>
7676
```
7777

agents/agentscope/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<dependency>
4848
<groupId>io.agentscope</groupId>
4949
<artifactId>agentscope-runtime-engine</artifactId>
50-
<version>1.0.1</version>
50+
<version>1.0.2</version>
5151
</dependency>
5252

5353
<dependency>

cookbook/en/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# CHANGELOG
22

3+
## v1.0.2
4+
5+
### Refactor
6+
- Refactored the sandbox into a separate module: agentscope-runtime-sandbox
7+
- Moved extensible capabilities from the Sandbox module to an extension module to simplify core module dependencies
8+
9+
### Added
10+
- Added support for configuring AgentApp parameters via environment variables or command-line arguments
11+
312
## v1.0.1
413

514
### Fixed

engine-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-engine</artifactId>
12-
<version>1.0.1</version>
12+
<version>${revision}</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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<groupId>io.agentscope</groupId>
3131
<artifactId>browser-agent-backend</artifactId>
32-
<version>1.0.1</version>
32+
<version>1.0.2</version>
3333
<name>Example::Browser Use Backend</name>
3434
<description>Java backend for AgentScope browser use demo</description>
3535

@@ -57,12 +57,12 @@
5757
<dependency>
5858
<groupId>io.agentscope</groupId>
5959
<artifactId>spring-boot-starter-runtime-a2a</artifactId>
60-
<version>1.0.1</version>
60+
<version>1.0.2</version>
6161
</dependency>
6262
<dependency>
6363
<groupId>io.agentscope</groupId>
6464
<artifactId>agentscope-runtime-agentscope</artifactId>
65-
<version>1.0.1</version>
65+
<version>1.0.2</version>
6666
</dependency>
6767

6868

examples/simple_agent_use_examples/agentscope_use_example/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<groupId>io.agentscope</groupId>
3131
<artifactId>agentscope_use_example</artifactId>
32-
<version>1.0.1</version>
32+
<version>1.0.2</version>
3333
<name>Example::AgentScope Basic</name>
3434
<description>Java backend for AgentScope Basic Usage</description>
3535

@@ -44,19 +44,19 @@
4444
<dependency>
4545
<groupId>io.agentscope</groupId>
4646
<artifactId>agentscope-runtime-agentscope</artifactId>
47-
<version>1.0.1</version>
47+
<version>1.0.2</version>
4848
</dependency>
4949

5050
<dependency>
5151
<groupId>io.agentscope</groupId>
5252
<artifactId>agentscope-runtime-engine</artifactId>
53-
<version>1.0.1</version>
53+
<version>1.0.2</version>
5454
</dependency>
5555

5656
<dependency>
5757
<groupId>io.agentscope</groupId>
5858
<artifactId>agentscope-runtime-web</artifactId>
59-
<version>1.0.1</version>
59+
<version>1.0.2</version>
6060
</dependency>
6161
<!-- Logging -->
6262
<dependency>

examples/simple_agent_use_examples/custom_sandbox_example/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<groupId>io.agentscope</groupId>
3131
<artifactId>custom_sandbox_example</artifactId>
32-
<version>1.0.1</version>
32+
<version>1.0.2</version>
3333
<name>Example::AgentScope Basic</name>
3434
<description>Java backend for AgentScope Basic Usage</description>
3535

@@ -44,13 +44,13 @@
4444
<dependency>
4545
<groupId>io.agentscope</groupId>
4646
<artifactId>agentscope-runtime-agentscope</artifactId>
47-
<version>1.0.1</version>
47+
<version>1.0.2</version>
4848
</dependency>
4949

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

5656
<!-- Logging -->

examples/simple_agent_use_rocketmq_example/agentscope_use_rocketmq_server_example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@
3939
<dependency>
4040
<groupId>io.agentscope</groupId>
4141
<artifactId>agentscope-runtime-agentscope</artifactId>
42-
<version>1.0.1</version>
42+
<version>1.0.2</version>
4343
</dependency>
4444

4545
<dependency>
4646
<groupId>io.agentscope</groupId>
4747
<artifactId>agentscope-runtime-web</artifactId>
48-
<version>1.0.1</version>
48+
<version>1.0.2</version>
4949
</dependency>
5050

5151
<!-- Logging -->

examples/simple_sandbox_tool_example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<groupId>com.example</groupId>
1616
<artifactId>agentscope-examples-simple</artifactId>
17-
<version>1.0.1</version>
17+
<version>1.0.2</version>
1818
<name>AgentScope Spring MVC Demo</name>
1919
<description>AgentScope simple sample project using Spring MVC</description>
2020

@@ -43,7 +43,7 @@
4343
<dependency>
4444
<groupId>io.agentscope</groupId>
4545
<artifactId>agentscope-runtime-agentscope</artifactId>
46-
<version>1.0.1</version>
46+
<version>1.0.2</version>
4747
</dependency>
4848
</dependencies>
4949

0 commit comments

Comments
 (0)