Skip to content

Commit fdf66b4

Browse files
authored
chore(main): release 0.3.0 (#63)
1 parent 18954db commit fdf66b4

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [0.3.0](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.2.2...v0.3.0) (2025-04-04)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* add support for schema version 2025-03-26 ([#62](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/62))
9+
10+
### Features
11+
12+
* add support for schema version 2025-03-26 ([#62](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/62)) ([10aca90](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/10aca90c78467cf68ede3e06ea1f49236244fcf2))
13+
* set default schema version to 2024_11_05 ([#64](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/64)) ([c72d252](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/c72d252e505849256e2262f92caefb445b5b464c))
14+
315
## [0.2.2](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.2.1...v0.2.2) (2025-03-30)
416

517

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-mcp-schema"
3-
version = "0.2.2"
3+
version = "0.3.0"
44
authors = ["Ali Hashemi"]
55
categories = ["data-structures", "parser-implementations", "parsing"]
66
description = "Type-safe implementation of the Model Context Protocol in Rust, designed to reduce errors and accelerate development with powerful utilities."

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -84,21 +84,21 @@ Example: enable `2025_03_26` version of the shema:
8484

8585
```toml
8686
# Cargo.toml
87-
rust-mcp-schema = { version: 0.2.2 , features=["2025_03_26"] }
87+
rust-mcp-schema = { version: 0.3.0 , features=["2025_03_26"] }
8888
```
8989

9090
Example: enable `latest` version of the shema:
9191

9292
```toml
9393
#Cargo.toml
94-
rust-mcp-schema = { version: 0.2.2 , features=["latest"] }
94+
rust-mcp-schema = { version: 0.3.0 , features=["latest"] }
9595
```
9696

9797
Example: enable specific version of the shema (2024_11_05) :
9898

9999
```toml
100100
#Cargo.toml
101-
rust-mcp-schema = { version: 0.2.2 , features=["2024_11_05"] }
101+
rust-mcp-schema = { version: 0.3.0 , features=["2024_11_05"] }
102102
```
103103

104104
<!-- x-release-please-end -->

0 commit comments

Comments
 (0)