Skip to content

Commit ed9fabc

Browse files
chore: release version 0.18.0
Drop SNAPSHOT suffix and update dependency examples in README, docs, and llms files. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 3efad77 commit ed9fabc

6 files changed

Lines changed: 11 additions & 21 deletions

File tree

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,15 @@ This SDK is a lightweight, annotation-based framework that simplifies MCP server
6666
<dependency>
6767
<groupId>io.github.thought2code</groupId>
6868
<artifactId>mcp-annotated-java-sdk</artifactId>
69-
<version>0.17.0</version>
69+
<version>0.18.0</version>
7070
</dependency>
7171
```
7272

7373
**Gradle:**
7474
```gradle
75-
implementation 'io.github.thought2code:mcp-annotated-java-sdk:0.17.0'
75+
implementation 'io.github.thought2code:mcp-annotated-java-sdk:0.18.0'
7676
```
7777

78-
Use the [Maven Central](https://central.sonatype.com/artifact/io.github.thought2code/mcp-annotated-java-sdk) badge above for the latest release. This repository’s development version is `0.18.0-SNAPSHOT`.
79-
8078
#### Step 2: Create Configuration File
8179

8280
Create `mcp-server.yml` in your `src/main/resources`:

README.zh-CN.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,18 +67,16 @@
6767
<dependency>
6868
<groupId>io.github.thought2code</groupId>
6969
<artifactId>mcp-annotated-java-sdk</artifactId>
70-
<version>0.17.0</version>
70+
<version>0.18.0</version>
7171
</dependency>
7272
```
7373

7474
**Gradle:**
7575

7676
```gradle
77-
implementation 'io.github.thought2code:mcp-annotated-java-sdk:0.17.0'
77+
implementation 'io.github.thought2code:mcp-annotated-java-sdk:0.18.0'
7878
```
7979

80-
依赖版本请以 [Maven Central](https://central.sonatype.com/artifact/io.github.thought2code/mcp-annotated-java-sdk) 徽章为准;本仓库当前开发版本为 `0.18.0-SNAPSHOT`
81-
8280
#### 第 2 步:创建配置文件
8381

8482
`src/main/resources` 下创建 `mcp-server.yml`

docs/getting-started.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,16 @@ This guide will help you build your first MCP server in 5 minutes.
1919
<dependency>
2020
<groupId>io.github.thought2code</groupId>
2121
<artifactId>mcp-annotated-java-sdk</artifactId>
22-
<version>0.17.0</version>
22+
<version>0.18.0</version>
2323
</dependency>
2424
```
2525

2626
### Gradle Dependency
2727

2828
```gradle
29-
implementation 'io.github.thought2code:mcp-annotated-java-sdk:0.17.0'
29+
implementation 'io.github.thought2code:mcp-annotated-java-sdk:0.18.0'
3030
```
3131

32-
Use the [Maven Central artifact page](https://central.sonatype.com/artifact/io.github.thought2code/mcp-annotated-java-sdk) for the latest release version. This repository’s development version is `0.18.0-SNAPSHOT`.
33-
3432
## 5-Minutes Tutorial
3533

3634
### Step 1: Create Configuration File

llms-full.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,16 @@ The Model Context Protocol (MCP) is a standardized protocol for building servers
4141
<dependency>
4242
<groupId>io.github.thought2code</groupId>
4343
<artifactId>mcp-annotated-java-sdk</artifactId>
44-
<version>0.17.0</version>
44+
<version>0.18.0</version>
4545
</dependency>
4646
```
4747

4848
### Gradle
4949

5050
```gradle
51-
implementation 'io.github.thought2code:mcp-annotated-java-sdk:0.17.0'
51+
implementation 'io.github.thought2code:mcp-annotated-java-sdk:0.18.0'
5252
```
5353

54-
Latest release: https://central.sonatype.com/artifact/io.github.thought2code/mcp-annotated-java-sdk (repo development version: 0.18.0-SNAPSHOT).
55-
5654
## Quick Start Tutorial
5755

5856
### Step 1: Create Configuration File

llms.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,16 @@ A lightweight, annotation-based Java framework that simplifies MCP (Model Contex
2424
<dependency>
2525
<groupId>io.github.thought2code</groupId>
2626
<artifactId>mcp-annotated-java-sdk</artifactId>
27-
<version>0.17.0</version>
27+
<version>0.18.0</version>
2828
</dependency>
2929
```
3030

3131
### Gradle Dependency
3232

3333
```gradle
34-
implementation 'io.github.thought2code:mcp-annotated-java-sdk:0.17.0'
34+
implementation 'io.github.thought2code:mcp-annotated-java-sdk:0.18.0'
3535
```
3636

37-
Latest release: https://central.sonatype.com/artifact/io.github.thought2code/mcp-annotated-java-sdk (repo development version: 0.18.0-SNAPSHOT).
38-
3937
### Create MCP Server
4038

4139
```java

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.thought2code</groupId>
88
<artifactId>mcp-annotated-java-sdk</artifactId>
9-
<version>0.18.0-SNAPSHOT</version>
9+
<version>0.18.0</version>
1010

1111
<name>MCP Annotated Java SDK</name>
1212
<description>Annotation-driven MCP (Model Context Protocol) Development with Java</description>

0 commit comments

Comments
 (0)