diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 8d41a6b..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,7 +0,0 @@ -# Changelog - -## 1.2.0 - -Upgrades underlying `amqp` version - -* Version `1.1.0` of amqp uses newer version of `amqp_client` and `ranch` (https://github.com/pma/amqp/commit/2e82976887d6d8c3a0d4d967904f8a3de5b11f31) diff --git a/README.md b/README.md index 2ca90ea..07c56f6 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ The project currently provides the following functionality: ~~~elixir def deps do - [{:gen_rmq, "~> 1.1.0"}] + [{:gen_rmq, "~> 1.2.0"}] end ~~~ diff --git a/test/support/assert.ex b/test/support/assert.ex index adad5c9..0128c35 100644 --- a/test/support/assert.ex +++ b/test/support/assert.ex @@ -10,7 +10,7 @@ defmodule GenRMQ.Test.Assert do Agent.start_link(fn -> Map.new() end, name: __MODULE__) end - def repeatedly(function, time \\ 5_000, interval \\ 500) do + def repeatedly(function, time \\ 10_000, interval \\ 250) do task = Task.async(fn -> repeatedly_loop(function, interval) end) case Task.yield(task, time) do