We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48862a1 commit b56b346Copy full SHA for b56b346
crates/rmcp/src/model.rs
@@ -141,7 +141,7 @@ impl<'de> Deserialize<'de> for ProtocolVersion {
141
#[allow(clippy::single_match)]
142
match s.as_str() {
143
"2024-11-05" => return Ok(ProtocolVersion::V_2024_11_05),
144
- "2024-03-26" => return Ok(ProtocolVersion::V_2025_03_26),
+ "2025-03-26" => return Ok(ProtocolVersion::V_2025_03_26),
145
_ => {}
146
}
147
Ok(ProtocolVersion(Cow::Owned(s)))
0 commit comments