Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.4.0](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.3.0...v0.4.0) (2025-04-26)


### ⚠ BREAKING CHANGES

* add new draft version and update 2025_03_26 ([#66](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/66))

### Features

* add new draft version and update 2025_03_26 ([#66](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/66)) ([bc233ea](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/bc233eaffff02630e0bf15bc9b8ae22743a4a734))

## [0.3.0](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.2.2...v0.3.0) (2025-04-04)


Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-mcp-schema"
version = "0.3.0"
version = "0.4.0"
authors = ["Ali Hashemi"]
categories = ["data-structures", "parser-implementations", "parsing"]
description = "Type-safe implementation of the Model Context Protocol in Rust, designed to reduce errors and accelerate development with powerful utilities."
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,21 +85,21 @@ Example: enable `2025_03_26` version of the shema:

```toml
# Cargo.toml
rust-mcp-schema = { version: 0.3.0 , features=["2025_03_26"] }
rust-mcp-schema = { version: 0.4.0 , features=["2025_03_26"] }
```

Example: enable `latest` version of the shema:

```toml
#Cargo.toml
rust-mcp-schema = { version: 0.3.0 , features=["latest"] }
rust-mcp-schema = { version: 0.4.0 , features=["latest"] }
```

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

```toml
#Cargo.toml
rust-mcp-schema = { version: 0.3.0 , features=["2024_11_05"] }
rust-mcp-schema = { version: 0.4.0 , features=["2024_11_05"] }
```

<!-- x-release-please-end -->
Expand Down