Skip to content

Commit 518de11

Browse files
committed
java sdk 0.8.1 release
Signed-off-by: Christian Tzolov <[email protected]>
1 parent 88ee4be commit 518de11

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

development/updates.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ title: "What's New"
33
description: 'The latest updates and improvements to MCP'
44
---
55

6+
<Update label="2025-03-26" description="Java SDK 0.8.1 released">
7+
- Version [0.8.1](https://github.com/modelcontextprotocol/java-sdk/releases/tag/v0.8.1) of the MCP Java SDK has been released,
8+
providing important bug fixes.
9+
</Update>
610
<Update label="2025-03-24" description="C# SDK released">
711
- We are exited to announce the availability of the MCP
812
[C# SDK](https://github.com/modelcontextprotocol/csharp-sdk/) developed by
@@ -11,6 +15,10 @@ description: 'The latest updates and improvements to MCP'
1115
[NuGet package](https://www.nuget.org/packages/ModelContextProtocol)
1216
- Python SDK 1.5.0 was released with multiple fixes and improvements.
1317
</Update>
18+
<Update label="2025-03-21" description="Java SDK 0.8.0 released">
19+
- Version [0.8.0](https://github.com/modelcontextprotocol/java-sdk/releases/tag/v0.8.0) of the MCP Java SDK has been released,
20+
delivering important session management improvements and bug fixes.
21+
</Update>
1422
<Update label="2025-03-10" description="Typescript SDK release">
1523
- Typescript SDK 1.7.0 was released with multiple fixes and improvements.
1624
</Update>

sdk/java/mcp-overview.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Java SDK for the [Model Context Protocol](https://modelcontextprotocol.org/docs/
77
enables standardized integration between AI models and tools.
88

99
<Note>
10-
### Breaking Changes in 0.8.0 ⚠️
11-
**Note:** Version 0.8.0 introduces several breaking changes including a new session-based architecture.
10+
### Breaking Changes in 0.8.x ⚠️
11+
**Note:** Version 0.8.x introduces several breaking changes including a new session-based architecture.
1212
If you're upgrading from 0.7.0, please refer to the [Migration Guide](https://github.com/modelcontextprotocol/java-sdk/blob/main/migration-0.8.0.md) for detailed instructions.
1313
</Note>
1414

@@ -139,7 +139,7 @@ Add the BOM to your project:
139139
<dependency>
140140
<groupId>io.modelcontextprotocol.sdk</groupId>
141141
<artifactId>mcp-bom</artifactId>
142-
<version>0.8.0</version>
142+
<version>0.8.1</version>
143143
<type>pom</type>
144144
<scope>import</scope>
145145
</dependency>
@@ -151,7 +151,7 @@ Add the BOM to your project:
151151
<Tab title="Gradle">
152152
```groovy
153153
dependencies {
154-
implementation platform("io.modelcontextprotocol.sdk:mcp-bom:0.8.0")
154+
implementation platform("io.modelcontextprotocol.sdk:mcp-bom:0.8.1")
155155
//...
156156
}
157157
```

sdk/java/mcp-server.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ description: Learn how to implement and configure a Model Context Protocol (MCP)
44
---
55

66
<Note>
7-
### Breaking Changes in 0.8.0 ⚠️
8-
**Note:** Version 0.8.0 introduces several breaking changes including a new session-based architecture.
7+
### Breaking Changes in 0.8.x ⚠️
8+
**Note:** Version 0.8.x introduces several breaking changes including a new session-based architecture.
99
If you're upgrading from 0.7.0, please refer to the [Migration Guide](https://github.com/modelcontextprotocol/java-sdk/blob/main/migration-0.8.0.md) for detailed instructions.
1010
</Note>
1111

0 commit comments

Comments
 (0)