Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit 156a466

Browse files
authored
2.4 release preparation (#140)
1 parent 61dcd01 commit 156a466

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The project currently provides the following functionality:
2525

2626
```elixir
2727
def deps do
28-
[{:gen_rmq, "~> 2.3.0"}]
28+
[{:gen_rmq, "~> 2.4.0"}]
2929
end
3030
```
3131

@@ -101,7 +101,7 @@ GenRMQ.Publisher.publish(Publisher, Jason.encode!(%{msg: "msg"}))
101101

102102
## Telemetry
103103

104-
GenRMQ emits [Telemetry][https://github.com/beam-telemetry/telemetry] events for both consumers and publishers.
104+
GenRMQ emits [Telemetry][telemetry] events for both consumers and publishers.
105105
It currently exposes the following events:
106106

107107
- `[:gen_rmq, :publisher, :connection, :start]` - Dispatched by a GenRMQ publisher when a connection to RabbitMQ is started
@@ -205,6 +205,7 @@ Copyright (c) 2018 - 2019 Meltwater Inc. [http://underthehood.meltwater.com/][un
205205
[migrating_to_100]: https://github.com/meltwater/gen_rmq/wiki/Migrations#0---100
206206
[examples]: https://github.com/meltwater/gen_rmq/tree/master/examples
207207
[consumer_doc]: https://github.com/meltwater/gen_rmq/blob/master/lib/consumer.ex
208+
[telemetry]: https://github.com/beam-telemetry/telemetry
208209
[docker_compose]: https://docs.docker.com/compose/
209210
[github_prs]: https://help.github.com/articles/about-pull-requests/
210211
[gen_rmq_issues]: https://github.com/meltwater/gen_rmq/issues

coveralls.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"skip_files": [
33
"test",
4-
"examples"
4+
"examples",
5+
"lib/processor.ex",
6+
"lib/rabbit_case.ex"
57
]
68
}

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule GenRMQ.Mixfile do
22
use Mix.Project
33

4-
@version "2.3.0"
4+
@version "2.4.0"
55

66
def project do
77
[

mix.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"makeup_elixir": {:hex, :makeup_elixir, "0.14.0", "cf8b7c66ad1cff4c14679698d532f0b5d45a3968ffbcbfd590339cb57742f1ae", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}], "hexpm"},
2020
"metrics": {:hex, :metrics, "1.0.1", "25f094dea2cda98213cecc3aeff09e940299d950904393b2a29d191c346a8486", [:rebar3], [], "hexpm"},
2121
"mimerl": {:hex, :mimerl, "1.2.0", "67e2d3f571088d5cfd3e550c383094b47159f3eee8ffa08e64106cdf5e981be3", [:rebar3], [], "hexpm"},
22-
"nimble_parsec": {:hex, :nimble_parsec, "0.5.3", "def21c10a9ed70ce22754fdeea0810dafd53c2db3219a0cd54cf5526377af1c6", [], [], "hexpm"},
22+
"nimble_parsec": {:hex, :nimble_parsec, "0.5.3", "def21c10a9ed70ce22754fdeea0810dafd53c2db3219a0cd54cf5526377af1c6", [:mix], [], "hexpm"},
2323
"parse_trans": {:hex, :parse_trans, "3.3.0", "09765507a3c7590a784615cfd421d101aec25098d50b89d7aa1d66646bc571c1", [:rebar3], [], "hexpm"},
2424
"rabbit_common": {:hex, :rabbit_common, "3.7.15", "fd44d795b905fd55cddb126524a74ef17a3127f2224b958fb19e0979e0aa238c", [:make, :rebar3], [{:jsx, "2.9.0", [hex: :jsx, repo: "hexpm", optional: false]}, {:lager, "3.6.10", [hex: :lager, repo: "hexpm", optional: false]}, {:ranch, "1.7.1", [hex: :ranch, repo: "hexpm", optional: false]}, {:recon, "2.5.0", [hex: :recon, repo: "hexpm", optional: false]}], "hexpm"},
2525
"ranch": {:hex, :ranch, "1.7.1", "6b1fab51b49196860b733a49c07604465a47bdb78aa10c1c16a3d199f7f8c881", [:rebar3], [], "hexpm"},

0 commit comments

Comments
 (0)