diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..0be00105 --- /dev/null +++ b/CHANGELOG.md @@ -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. diff --git a/mix.exs b/mix.exs index 1e476d5a..5c0f59f6 100644 --- a/mix.exs +++ b/mix.exs @@ -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 [ @@ -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",