From 85109f1b667976efc96b5d011660bcd542bb405d Mon Sep 17 00:00:00 2001 From: Justin Baker Date: Sun, 21 Mar 2021 13:18:23 -0500 Subject: [PATCH] Prep for 0.4.3 release --- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 267553a..9f07072 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.4.3 +### Enhancements +- Added `ssl_options` documentation + - Also support for dialyzer analysis + +### Bug Fixes +- Properly hand-off when establishing a connection using `:ssl` + - Before we could miss messages that were sent before hand-off +- Handle large but incomplete `:continuation` frames. + ## 0.4.2 ### Enhancements - Added `ssl_options` to `WebSockex.Conn` struct. diff --git a/README.md b/README.md index 8d0b785..5795a00 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Add `websockex` to your list of dependencies in `mix.exs`: ```elixir def deps do - [{:websockex, "~> 0.4.2"}] + [{:websockex, "~> 0.4.3"}] end ``` diff --git a/mix.exs b/mix.exs index 5309ae3..6b0e57c 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule WebSockex.Mixfile do [ app: :websockex, name: "WebSockex", - version: "0.4.2", + version: "0.4.3", elixir: "~> 1.3", description: "An Elixir WebSocket client", source_url: "https://github.com/Azolo/websockex",