Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ build/

### IntelliJ IDEA ###
.idea/modules.xml
.idea/misc.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
Expand Down
17 changes: 0 additions & 17 deletions .idea/misc.xml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Add the dependency:

```kotlin
dependencies {
implementation("io.modelcontextprotocol:kotlin-sdk:0.4.0")
implementation("io.modelcontextprotocol:kotlin-sdk:0.5.0")
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ plugins {
}

group = "io.modelcontextprotocol"
version = "0.4.0"
version = "0.5.0"

val mainSourcesJar = tasks.register<Jar>("mainSourcesJar") {
archiveClassifier = "sources"
Expand Down
2 changes: 1 addition & 1 deletion samples/kotlin-mcp-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ application {
group = "org.example"
version = "0.1.0"

val mcpVersion = "0.4.0"
val mcpVersion = "0.5.0"
val slf4jVersion = "2.0.9"
val anthropicVersion = "0.8.0"

Expand Down
2 changes: 1 addition & 1 deletion samples/kotlin-mcp-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ group = "org.example"
version = "0.1.0"

dependencies {
implementation("io.modelcontextprotocol:kotlin-sdk:0.4.0")
implementation("io.modelcontextprotocol:kotlin-sdk:0.5.0")
implementation("org.slf4j:slf4j-nop:2.0.9")
}

Expand Down
2 changes: 1 addition & 1 deletion samples/weather-stdio-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ application {
group = "org.example"
version = "0.1.0"

val mcpVersion = "0.4.0"
val mcpVersion = "0.5.0"
val slf4jVersion = "2.0.9"
val ktorVersion = "3.1.1"

Expand Down
Loading