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

## v0.11.4 (2025-11-07)

### Enhancements

* Feat added new function to handle side-effects.
* Feat added error handler for unary and stream pipelines.
* Docs adds a better explanation of the different types of input.
* Docs improvements to module documentation.
* Docs livebooks added directly to the documentation.

### Bug fixes

* Fix refresh error spam on direct_state (no lb).
* Fix correct return type in doc.
3 changes: 2 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule GRPC.Mixfile do
use Mix.Project

@source_url "https://github.com/elixir-grpc/grpc"
@version "0.11.2"
@version "0.11.4"

def project do
[
Expand Down Expand Up @@ -66,6 +66,7 @@ defmodule GRPC.Mixfile do
source_ref: "v#{@version}",
source_url_pattern: "#{@source_url}/blob/v#{@version}/grpc/%{path}#L%{line}",
extras: [
"CHANGELOG.md",
"guides/getting_started/quickstart.livemd",
"guides/getting_started/stream.livemd",
"guides/getting_started/error_handling.md",
Expand Down
Loading