From 8df9ff4a584abf9fbcdb239a5d5bf60667ddbf4c Mon Sep 17 00:00:00 2001 From: Johanna Larsson Date: Mon, 21 Sep 2026 14:55:07 +0100 Subject: [PATCH] v0.3.0 --- CHANGELOG | 4 ++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index c3b4cd6..b4f20f9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,9 @@ # CHANGELOG +## v0.3.0 (2026-09-21) + +* Add support for zstd compression, only available on OTP 28+, for subscribers that opt-in with `compression: true`. + ## v0.2.0 (2026-09-20) * Sequential cursors are replaced with timestamp cursors. Any existing cursors are updated transparently. diff --git a/README.md b/README.md index 86a8b97..a4fa003 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ If you have Elixir installed and just want to see it in action, run this script ```elixir def deps do [ - {:kite, "~> 0.2"} + {:kite, "~> 0.3"} ] end ``` diff --git a/mix.exs b/mix.exs index 616a61b..db88912 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Kite.MixProject do def project do [ app: :kite, - version: "0.2.0", + version: "0.3.0", elixir: "~> 1.18", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, -- 2.51.2