Skip to content

Commit f42fcec

Browse files
authored
Release 0.5.0 (#90)
1 parent b60e12a commit f42fcec

File tree

7 files changed

+6
-22
lines changed

7 files changed

+6
-22
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ build/
66

77
### IntelliJ IDEA ###
88
.idea/modules.xml
9+
.idea/misc.xml
910
.idea/jarRepositories.xml
1011
.idea/compiler.xml
1112
.idea/libraries/

.idea/misc.xml

Lines changed: 0 additions & 17 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Add the dependency:
3131

3232
```kotlin
3333
dependencies {
34-
implementation("io.modelcontextprotocol:kotlin-sdk:0.4.0")
34+
implementation("io.modelcontextprotocol:kotlin-sdk:0.5.0")
3535
}
3636
```
3737

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ plugins {
1616
}
1717

1818
group = "io.modelcontextprotocol"
19-
version = "0.4.0"
19+
version = "0.5.0"
2020

2121
val mainSourcesJar = tasks.register<Jar>("mainSourcesJar") {
2222
archiveClassifier = "sources"

samples/kotlin-mcp-client/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ application {
1212
group = "org.example"
1313
version = "0.1.0"
1414

15-
val mcpVersion = "0.4.0"
15+
val mcpVersion = "0.5.0"
1616
val slf4jVersion = "2.0.9"
1717
val anthropicVersion = "0.8.0"
1818

samples/kotlin-mcp-server/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ group = "org.example"
1313
version = "0.1.0"
1414

1515
dependencies {
16-
implementation("io.modelcontextprotocol:kotlin-sdk:0.4.0")
16+
implementation("io.modelcontextprotocol:kotlin-sdk:0.5.0")
1717
implementation("org.slf4j:slf4j-nop:2.0.9")
1818
}
1919

samples/weather-stdio-server/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ application {
1313
group = "org.example"
1414
version = "0.1.0"
1515

16-
val mcpVersion = "0.4.0"
16+
val mcpVersion = "0.5.0"
1717
val slf4jVersion = "2.0.9"
1818
val ktorVersion = "3.1.1"
1919

0 commit comments

Comments
 (0)