File tree Expand file tree Collapse file tree 5 files changed +12
-4
lines changed Expand file tree Collapse file tree 5 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "." : " 0.12.0 "
2
+ "." : " 0.12.1 "
3
3
}
Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project are documented in this file.
4
4
5
+ ## [ 0.12.1] ( https://github.com/cloudwalk/hermes-mcp/compare/v0.12.0...v0.12.1 ) (2025-07-14)
6
+
7
+
8
+ ### Code Refactoring
9
+
10
+ * do not hangle on transport process ([ #185 ] ( https://github.com/cloudwalk/hermes-mcp/issues/185 ) ) ([ e6ba926] ( https://github.com/cloudwalk/hermes-mcp/commit/e6ba9260ceb8e078ca043d6f1ceb41d540b42ca0 ) )
11
+ * remove batch messaging feature ([ #183 ] ( https://github.com/cloudwalk/hermes-mcp/issues/183 ) ) ([ 99458c0] ( https://github.com/cloudwalk/hermes-mcp/commit/99458c0559d69addf9e22b3f7e38891e83d475de ) )
12
+
5
13
## [ 0.12.0] ( https://github.com/cloudwalk/hermes-mcp/compare/v0.11.3...v0.12.0 ) (2025-07-11)
6
14
7
15
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Hermes MCP is a comprehensive Elixir SDK for the [Model Context Protocol](https:
15
15
``` elixir
16
16
def deps do
17
17
[
18
- {:hermes_mcp , " ~> 0.12.0 " } # x-release-please-version
18
+ {:hermes_mcp , " ~> 0.12.1 " } # x-release-please-version
19
19
]
20
20
end
21
21
```
Original file line number Diff line number Diff line change 54
54
packages = forAllSystems ( pkgs : {
55
55
default = pkgs . stdenv . mkDerivation {
56
56
pname = "hermes-mcp" ;
57
- version = "0.12.0 " ; # x-release-please-version
57
+ version = "0.12.1 " ; # x-release-please-version
58
58
src = ./. ;
59
59
60
60
buildInputs = with pkgs ; [
Original file line number Diff line number Diff line change 1
1
defmodule Hermes.MixProject do
2
2
use Mix.Project
3
3
4
- @ version "0.12.0 "
4
+ @ version "0.12.1 "
5
5
@ source_url "https://github.com/cloudwalk/hermes-mcp"
6
6
7
7
def project do
You can’t perform that action at this time.
0 commit comments