Skip to content

chore(main): release 0.1.11 #48

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.1.11](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.1.10...v0.1.11) (2025-03-18)


### Features

* add new utility functions for CallToolResultContentItem ([#46](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/46)) ([1fe212c](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/1fe212c38a37033180644d938f38e990126465ea))
* add tool_name() method to CallToolRequest ([#52](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/52)) ([2489d90](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/2489d900acee25efdfbc21066110a59665ab2e7f))
* implement default trait for eligible types ([#51](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/51)) ([92022da](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/92022da588dcaa882debeea1c9ca6c5012f5077f))


### Bug Fixes

* updated release action to keep the readme version updated ([#49](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/49)) ([e8b03cf](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/e8b03cfd8879074b8f0ce35860647782549c190b))

## [0.1.10](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.1.9...v0.1.10) (2025-03-08)


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.1.10"
version = "0.1.11"
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 @@ -79,21 +79,21 @@ Example: enable `draft` version of the shema:

```toml
# Cargo.toml
rust-mcp-schema = { version: 0.1.7 , features=["draft"] }
rust-mcp-schema = { version: 0.1.11 , features=["draft"] }
```

Example: enable `latest` version of the shema:

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

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

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

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