From 7999066acb3dc839ce20fee97597683b6a1d403a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 4 Sep 2026 11:39:18 +0000 Subject: [PATCH] chore(main): release 0.2.2 --- .github/release-please/manifest.json | 2 +- CHANGELOG.md | 11 +++++++++++ README.md | 2 +- mix.exs | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index af55ef0..949ce4c 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.1" + ".": "0.2.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index bfbd280..09ff53a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.2.2](https://github.com/nmbrone/minch/compare/v0.2.1...v0.2.2) (2026-09-04) + + +### Bug Fixes + +* count reconnect attempts across failed handshakes ([#89](https://github.com/nmbrone/minch/issues/89)) ([45b70be](https://github.com/nmbrone/minch/commit/45b70be30a7ab7d4d9ce3ebf985c3c1cbdcfe166)) +* deliver frames received right before a connection close ([#88](https://github.com/nmbrone/minch/issues/88)) ([0a58982](https://github.com/nmbrone/minch/commit/0a58982851ee56eb8f55b34a85e0d60fdf48513d)) +* forward the :extensions option to the upgrade ([#91](https://github.com/nmbrone/minch/issues/91)) ([f1916f9](https://github.com/nmbrone/minch/commit/f1916f98017e8cc783e2b7a9675aa6b9af92a329)) +* report an invalid URL scheme instead of crashing ([#94](https://github.com/nmbrone/minch/issues/94)) ([5336598](https://github.com/nmbrone/minch/commit/53365986771d816348d4e5967368df056fb4357c)) +* report the close frame as the disconnect reason ([#92](https://github.com/nmbrone/minch/issues/92)) ([c2fb6f6](https://github.com/nmbrone/minch/commit/c2fb6f64349a09ac540c7174d9ff709f45eb4eb6)) + ## [0.2.1](https://github.com/nmbrone/minch/compare/v0.2.0...v0.2.1) (2025-07-04) diff --git a/README.md b/README.md index 550ac24..f54c6e1 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ The package can be installed by adding `minch` to your list of dependencies in ` ```elixir def deps do [ - {:minch, "~> 0.2.1"} + {:minch, "~> 0.2.2"} ] end ``` diff --git a/mix.exs b/mix.exs index e89347e..a22e2fd 100644 --- a/mix.exs +++ b/mix.exs @@ -6,7 +6,7 @@ defmodule Minch.MixProject do def project do [ app: :minch, - version: "0.2.1", + version: "0.2.2", elixir: "~> 1.15", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,