From 858cc9c2cb3509d7e1260a75eb7eb81c007e491f Mon Sep 17 00:00:00 2001 From: ignaciogoldchluk-yolo Date: Fri, 16 Aug 2024 14:26:53 +0300 Subject: [PATCH] bump --- CHANGELOG.md | 14 +++++++++++--- mix.exs | 2 +- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c986aea..d21faf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,23 @@ -## [3.1.1] (2024-08-16) +## [3.1.2] (2024-08-16) + +### Bug fixes +- Fix missing specification for `ConsumerServer` unique id + +### Internal +- Prefix modules with `Coney.` to avoid conflicts + +## [3.1.1] (2024-08-16) - BROKEN ### Bug fixes - Fix missing `:name` when starting `ConsumerServer` -## [3.1.0] (2024-08-14) +## [3.1.0] (2024-08-14) - BROKEN ### Enhancements - Add `:enabled` config value - `:adapter` config value is now optional and defaults to `Coney.RabbitConnection` -## [3.0.2] (2024-08-12) +## [3.0.2] (2024-08-12) - BROKEN ### Bug fixes - Fix incorrect termination order where the connection to RabbitMQ was closed before the channels. diff --git a/mix.exs b/mix.exs index 63ef22a..e441c3b 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Coney.Mixfile do def project do [ app: :coney, - version: "3.1.1", + version: "3.1.2", elixir: ">= 1.12.0", build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod,