diff --git a/CHANGELOG.md b/CHANGELOG.md index a0f25ca..9924c60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --- +## [6.0.4] - 2024-09-02 + +### Added + +- ([#199](https://github.com/primait/amqpx/pull/199)) `host` param will be resolved to a list of `ip`s, if it's a + hostname, and the connection will be established to the first available one. + +--- + ## [6.0.3] - 2024-05-28 ### Fixed @@ -48,7 +57,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - ([#129](https://github.com/primait/amqpx/pull/)) Default binding for DLX queues instead of wildcard -[Unreleased]: https://github.com/primait/amqpx/compare/6.0.3...HEAD +[Unreleased]: https://github.com/primait/amqpx/compare/6.0.4...HEAD +[6.0.4]: https://github.com/primait/amqpx/compare/6.0.3...6.0.4 [6.0.3]: https://github.com/primait/amqpx/compare/6.0.2...6.0.3 [6.0.2]: https://github.com/primait/amqpx/compare/6.0.1...6.0.2 [6.0.1]: https://github.com/primait/amqpx/compare/6.0.0...6.0.1 diff --git a/mix.exs b/mix.exs index 12f4739..59cac84 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule Amqpx.MixProject do [ app: :amqpx, name: "amqpx", - version: "6.0.3", + version: "6.0.4", elixir: "~> 1.7", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :production,