Skip to content

Commit 08112bb

Browse files
committed
Prepare 1.0.8 release
Change-Id: I3b17df306366578087a62928959c60b6982042db
1 parent c79b35c commit 08112bb

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

agentscope-core/src/main/java/io/agentscope/core/tool/mcp/McpClientBuilder.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,9 +296,7 @@ public Mono<McpClientWrapper> buildAsync() {
296296

297297
McpSchema.Implementation clientInfo =
298298
new McpSchema.Implementation(
299-
"agentscope-java",
300-
"AgentScope Java Framework",
301-
"1.0.8");
299+
"agentscope-java", "AgentScope Java Framework", "1.0.8");
302300

303301
McpSchema.ClientCapabilities clientCapabilities =
304302
McpSchema.ClientCapabilities.builder().build();

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.8", Version.VERSION, "VERSION should match current version");
33+
Assertions.assertEquals("1.0.8", Version.VERSION, "VERSION should match current version");
3534
}
3635

3736
@Test

0 commit comments

Comments
 (0)