From 0bcf85dfcce4f8a3bb0229e9bab2ab9f4ee5b7c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrique=20Fern=C3=A1ndez?= Date: Mon, 13 Jul 2026 20:32:45 +0200 Subject: [PATCH] chore(main): release 2.11.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- mix.exs | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c3a98a6..a9b8e02 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.10.1" + ".": "2.11.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a240b1..5183ea0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [2.11.0](https://github.com/efcasado/pulsar-elixir/compare/v2.10.1...v2.11.0) (2026-07-13) + + +### Features + +* add became_{active, passive}/1 callbacks for failover consumers ([#155](https://github.com/efcasado/pulsar-elixir/issues/155)) ([07584dd](https://github.com/efcasado/pulsar-elixir/commit/07584dd023d395b502c60a6c04692df34279668a)) + + +### Dependencies + +* bump actions/cache from 5 to 6 ([#150](https://github.com/efcasado/pulsar-elixir/issues/150)) ([2beb6f1](https://github.com/efcasado/pulsar-elixir/commit/2beb6f114ca0c202e6ad635970901e12c8efe2da)) +* bump apachepulsar/pulsar from 4.2.2 to 4.2.3 ([#154](https://github.com/efcasado/pulsar-elixir/issues/154)) ([7d063eb](https://github.com/efcasado/pulsar-elixir/commit/7d063eb6f2d10b96358a98b82c97cfe8d4c6729e)) +* bump nimble_lz4 from 1.1.0 to 1.2.0 ([#153](https://github.com/efcasado/pulsar-elixir/issues/153)) ([88aa5c2](https://github.com/efcasado/pulsar-elixir/commit/88aa5c290e5f9ce0207ff03297d1288b56d1812e)) + ## [2.10.1](https://github.com/efcasado/pulsar-elixir/compare/v2.10.0...v2.10.1) (2026-06-19) diff --git a/README.md b/README.md index 8d87001..a23f275 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Add `:pulsar_elixir` to your dependencies in `mix.exs`: ```elixir def deps do [ - {:pulsar, "~> 2.10.1", hex: :pulsar_elixir} + {:pulsar, "~> 2.11.0", hex: :pulsar_elixir} ] end ``` diff --git a/mix.exs b/mix.exs index 0136576..b738b62 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Pulsar.MixProject do def project do [ app: :pulsar, - version: "2.10.1", + version: "2.11.0", elixir: "~> 1.14", start_permanent: Mix.env() == :prod, elixirc_paths: elixirc_paths(Mix.env()),