Skip to content

Commit c378929

Browse files
chore: release 0.12.0 (#171)
🚀 Want to release this? --- ## [0.12.0](v0.11.3...v0.12.0) (2025-07-11) ### Features * client sampling capability ([#170](#170)) ([da617a6](da617a6)) * roots/list and completion features ([#178](#178)) ([d22a6bd](d22a6bd)) * server components cursor pagination ([#177](#177)) ([a95eba7](a95eba7)) * server-side sampling capability ([#173](#173)) ([c09e7f3](c09e7f3)) ### Bug Fixes * allow configuring server request timeout ([#182](#182)) ([e79fe2f](e79fe2f)) * do not allow duplicate server components and more convenient API ([#180](#180)) ([bc71df8](bc71df8)) ### Miscellaneous Chores * add llms summary about the library ([#175](#175)) ([ed0e608](ed0e608)) * allow different kind of components have the same name ([#181](#181)) ([d5ba6f5](d5ba6f5)) ### Code Refactoring * handle_sampling callback, use frame as entrypoint for notifications ([#176](#176)) ([1e88711](1e88711)) * interactive tasks now support JSON file input ([#172](#172)) ([9465266](9465266)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: cloudwalk-actions[bot] <156226953+cloudwalk-actions[bot]@users.noreply.github.com>
1 parent e79fe2f commit c378929

File tree

5 files changed

+32
-4
lines changed

5 files changed

+32
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.11.3"
2+
".": "0.12.0"
33
}

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,34 @@
22

33
All notable changes to this project are documented in this file.
44

5+
## [0.12.0](https://github.com/cloudwalk/hermes-mcp/compare/v0.11.3...v0.12.0) (2025-07-11)
6+
7+
8+
### Features
9+
10+
* client sampling capability ([#170](https://github.com/cloudwalk/hermes-mcp/issues/170)) ([da617a6](https://github.com/cloudwalk/hermes-mcp/commit/da617a694dbeff1d363e7b671a31f484e202e685))
11+
* roots/list and completion features ([#178](https://github.com/cloudwalk/hermes-mcp/issues/178)) ([d22a6bd](https://github.com/cloudwalk/hermes-mcp/commit/d22a6bdfb92189e54455c49120abc2c7fa4f8814))
12+
* server components cursor pagination ([#177](https://github.com/cloudwalk/hermes-mcp/issues/177)) ([a95eba7](https://github.com/cloudwalk/hermes-mcp/commit/a95eba7cc2ffcefca99b3961b80094bb12a3912f))
13+
* server-side sampling capability ([#173](https://github.com/cloudwalk/hermes-mcp/issues/173)) ([c09e7f3](https://github.com/cloudwalk/hermes-mcp/commit/c09e7f3a5e95e59f5644ef12e1602b3b8621df7f))
14+
15+
16+
### Bug Fixes
17+
18+
* allow configuring server request timeout ([#182](https://github.com/cloudwalk/hermes-mcp/issues/182)) ([e79fe2f](https://github.com/cloudwalk/hermes-mcp/commit/e79fe2f003a41517a5ff5e8f6e3fb378bdc43f11))
19+
* do not allow duplicate server components and more convenient API ([#180](https://github.com/cloudwalk/hermes-mcp/issues/180)) ([bc71df8](https://github.com/cloudwalk/hermes-mcp/commit/bc71df8f7c6fb877f19dada9b17c3eb342d32ccd))
20+
21+
22+
### Miscellaneous Chores
23+
24+
* add llms summary about the library ([#175](https://github.com/cloudwalk/hermes-mcp/issues/175)) ([ed0e608](https://github.com/cloudwalk/hermes-mcp/commit/ed0e60872e5b77ddb6ffff13da6c1e20b1c2d7a2))
25+
* allow different kind of components have the same name ([#181](https://github.com/cloudwalk/hermes-mcp/issues/181)) ([d5ba6f5](https://github.com/cloudwalk/hermes-mcp/commit/d5ba6f56fb54ed07e46d37c2217dcf76c793762f))
26+
27+
28+
### Code Refactoring
29+
30+
* handle_sampling callback, use frame as entrypoint for notifications ([#176](https://github.com/cloudwalk/hermes-mcp/issues/176)) ([1e88711](https://github.com/cloudwalk/hermes-mcp/commit/1e887117ba81751042534d60df79d83a8123a3d9))
31+
* interactive tasks now support JSON file input ([#172](https://github.com/cloudwalk/hermes-mcp/issues/172)) ([9465266](https://github.com/cloudwalk/hermes-mcp/commit/946526617171094ccf929a5d9f3bbd8e3a591f18))
32+
533
## [0.11.3](https://github.com/cloudwalk/hermes-mcp/compare/v0.11.2...v0.11.3) (2025-07-02)
634

735

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Hermes MCP is a comprehensive Elixir SDK for the [Model Context Protocol](https:
1515
```elixir
1616
def deps do
1717
[
18-
{:hermes_mcp, "~> 0.11.3"} # x-release-please-version
18+
{:hermes_mcp, "~> 0.12.0"} # x-release-please-version
1919
]
2020
end
2121
```

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
packages = forAllSystems (pkgs: {
5454
default = pkgs.stdenv.mkDerivation {
5555
pname = "hermes-mcp";
56-
version = "0.11.3"; # x-release-please-version
56+
version = "0.12.0"; # x-release-please-version
5757
src = ./.;
5858

5959
buildInputs = with pkgs; [

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Hermes.MixProject do
22
use Mix.Project
33

4-
@version "0.11.3"
4+
@version "0.12.0"
55
@source_url "https://github.com/cloudwalk/hermes-mcp"
66

77
def project do

0 commit comments

Comments
 (0)