Skip to content

Commit b9080f2

Browse files
committed
Prepare 1.0.12 release
1 parent a6c32f5 commit b9080f2

12 files changed

Lines changed: 30 additions & 31 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Detailed error messages.
2727

2828
**Environment (please complete the following information):**
2929

30-
- AgentScope-Java Version: [e.g. 1.0.11, check your pom.xml dependency version or run `mvn dependency:tree | grep agentscope-parent:pom`(only mac/linux)]
30+
- AgentScope-Java Version: [e.g. 1.0.12, check your pom.xml dependency version or run `mvn dependency:tree | grep agentscope-parent:pom`(only mac/linux)]
3131
- Java Version: [e.g. 17]
3232
- OS: [e.g. macos, windows]
3333

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## AgentScope-Java Version
22

3-
[The version of AgentScope-Java you are working on, e.g. 1.0.11, check your pom.xml dependency version or run `mvn dependency:tree | grep agentscope-parent:pom`(only mac/linux)]
3+
[The version of AgentScope-Java you are working on, e.g. 1.0.12, check your pom.xml dependency version or run `mvn dependency:tree | grep agentscope-parent:pom`(only mac/linux)]
44

55
## Description
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Built for enterprise deployment requirements:
7777
<dependency>
7878
<groupId>io.agentscope</groupId>
7979
<artifactId>agentscope</artifactId>
80-
<version>1.0.11</version>
80+
<version>1.0.12</version>
8181
</dependency>
8282
```
8383

README_zh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ AgentScope 设计上能够与现有企业基础设施集成,无需大规模改
7777
<dependency>
7878
<groupId>io.agentscope</groupId>
7979
<artifactId>agentscope</artifactId>
80-
<version>1.0.11</version>
80+
<version>1.0.12</version>
8181
</dependency>
8282
```
8383

SKILL.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,15 +100,15 @@ public static void main(String[] args) {
100100
<dependency>
101101
<groupId>io.agentscope</groupId>
102102
<artifactId>agentscope</artifactId>
103-
<version>1.0.11</version>
103+
<version>1.0.12</version>
104104
</dependency>
105105
</dependencies>
106106
```
107107

108108
**For local development (if working with source code):**
109109
```xml
110110
<properties>
111-
<agentscope.version>1.0.11</agentscope.version>
111+
<agentscope.version>1.0.12</agentscope.version>
112112
<java.version>17</java.version>
113113
</properties>
114114

@@ -122,8 +122,8 @@ public static void main(String[] args) {
122122
```
123123

124124
**⚠️ IMPORTANT: Version Selection**
125-
- **Use `agentscope:1.0.11`** for production (stable, from Maven Central)
126-
- **Use `agentscope-core:1.0.11`** only if you're developing AgentScope itself
125+
- **Use `agentscope:1.0.12`** for production (stable, from Maven Central)
126+
- **Use `agentscope-core:1.0.12`** only if you're developing AgentScope itself
127127
- **NEVER use version `0.1.0-SNAPSHOT`** - this version doesn't exist
128128

129129
### ⚠️ CRITICAL: Common Dependency Mistakes
@@ -161,7 +161,7 @@ public static void main(String[] args) {
161161
<dependency>
162162
<groupId>io.agentscope</groupId>
163163
<artifactId>agentscope</artifactId>
164-
<version>1.0.11</version> <!-- ✅ CORRECT -->
164+
<version>1.0.12</version> <!-- ✅ CORRECT -->
165165
</dependency>
166166
```
167167

agentscope-core/src/main/java/io/agentscope/core/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
public final class Version {
2525

2626
/** AgentScope Java version */
27-
public static final String VERSION = "1.0.12-SNAPSHOT";
27+
public static final String VERSION = "1.0.12";
2828

2929
private Version() {
3030
// Utility class - prevent instantiation

agentscope-core/src/test/java/io/agentscope/core/VersionTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ void testVersionConstant() {
3030
// Verify version constant is set
3131
Assertions.assertNotNull(Version.VERSION, "VERSION constant should not be null");
3232
Assertions.assertFalse(Version.VERSION.isEmpty(), "VERSION constant should not be empty");
33-
Assertions.assertEquals(
34-
"1.0.12-SNAPSHOT", Version.VERSION, "VERSION should match current version");
33+
Assertions.assertEquals("1.0.12", Version.VERSION, "VERSION should match current version");
3534
}
3635

3736
@Test

agentscope-dependencies-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
</developers>
6161

6262
<properties>
63-
<revision>1.0.12-SNAPSHOT</revision>
63+
<revision>1.0.12</revision>
6464
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6565
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
6666
<java.version>17</java.version>

agentscope-distribution/agentscope-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
</developers>
6060

6161
<properties>
62-
<revision>1.0.12-SNAPSHOT</revision>
62+
<revision>1.0.12</revision>
6363
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6464
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
6565
<java.version>17</java.version>

docs/en/quickstart/installation.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ For most cases, all-in-one is enough. Switch to core + extensions when you need
2323
<dependency>
2424
<groupId>io.agentscope</groupId>
2525
<artifactId>agentscope</artifactId>
26-
<version>1.0.11</version>
26+
<version>1.0.12</version>
2727
</dependency>
2828
```
2929

3030
**Gradle:**
3131
```gradle
32-
implementation 'io.agentscope:agentscope:1.0.11'
32+
implementation 'io.agentscope:agentscope:1.0.12'
3333
```
3434

3535
### Included Dependencies
@@ -136,13 +136,13 @@ For fine-grained dependency control, use `agentscope-core` with extension module
136136
<dependency>
137137
<groupId>io.agentscope</groupId>
138138
<artifactId>agentscope-core</artifactId>
139-
<version>1.0.11</version>
139+
<version>1.0.12</version>
140140
</dependency>
141141
```
142142

143143
**Gradle:**
144144
```gradle
145-
implementation 'io.agentscope:agentscope-core:1.0.11'
145+
implementation 'io.agentscope:agentscope-core:1.0.12'
146146
```
147147

148148
### Extension Modules
@@ -203,7 +203,7 @@ Extension modules automatically include their required third-party dependencies.
203203
<dependency>
204204
<groupId>io.agentscope</groupId>
205205
<artifactId>agentscope-extensions-mem0</artifactId>
206-
<version>1.0.11</version>
206+
<version>1.0.12</version>
207207
</dependency>
208208
```
209209

@@ -215,7 +215,7 @@ Extension modules automatically include their required third-party dependencies.
215215
<dependency>
216216
<groupId>io.agentscope</groupId>
217217
<artifactId>agentscope-spring-boot-starter</artifactId>
218-
<version>1.0.11</version>
218+
<version>1.0.12</version>
219219
</dependency>
220220
```
221221

@@ -234,7 +234,7 @@ Additional starters:
234234
<dependency>
235235
<groupId>io.agentscope</groupId>
236236
<artifactId>agentscope-quarkus-extension</artifactId>
237-
<version>1.0.11</version>
237+
<version>1.0.12</version>
238238
</dependency>
239239
```
240240

@@ -244,6 +244,6 @@ Additional starters:
244244
<dependency>
245245
<groupId>io.agentscope</groupId>
246246
<artifactId>agentscope-micronaut-extension</artifactId>
247-
<version>1.0.11</version>
247+
<version>1.0.12</version>
248248
</dependency>
249249
```

0 commit comments

Comments
 (0)