Skip to content

Commit 23cb192

Browse files
authored
Set latest version to 2025-03-26 (#80)
* Set latest version to 2025-03-26 * Specify support for 2025-03-26 (latest) version
1 parent 32cf6cb commit 23cb192

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ Official Swift SDK for the [Model Context Protocol][mcp] (MCP).
66

77
The Model Context Protocol (MCP) defines a standardized way
88
for applications to communicate with AI and ML models.
9-
This Swift SDK provides a robust implementation of both client and server components.
9+
This Swift SDK implements both client and server components
10+
according to the [2025-03-26][mcp-spec-2025-03-26] (latest) version
11+
of the MCP specification.
1012

1113
## Requirements
1214

@@ -753,4 +755,5 @@ see the [GitHub Releases page](https://github.com/modelcontextprotocol/swift-sdk
753755

754756
This project is licensed under the MIT License.
755757

756-
[mcp]: https://modelcontextprotocol.io
758+
[mcp]: https://modelcontextprotocol.io
759+
[mcp-spec-2025-03-26]: https://modelcontextprotocol.io/specification/2025-03-26

Sources/MCP/Base/Versioning.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import Foundation
44
/// following the format YYYY-MM-DD, to indicate
55
/// the last date backwards incompatible changes were made.
66
///
7-
/// - SeeAlso: https://spec.modelcontextprotocol.io/specification/2024-11-05/basic/versioning/
7+
/// - SeeAlso: https://spec.modelcontextprotocol.io/specification/2025-03-26/
88
public enum Version {
99
/// The current protocol version.
10-
public static let latest = "2024-11-05"
10+
public static let latest = "2025-03-26"
1111
}

0 commit comments

Comments
 (0)