Current section
4 Versions
Jump to
Current section
4 Versions
Compare versions
4
files changed
+4
additions
-4
deletions
| @@ -10,7 +10,7 @@ by adding `phoenix_pubsub_nats` to your list of dependencies in `mix.exs`: | |
| 10 10 | ```elixir |
| 11 11 | def deps do |
| 12 12 | [ |
| 13 | - {:phoenix_pubsub_nats, "~> 0.2.1"} |
| 13 | + {:phoenix_pubsub_nats, "~> 0.2.2"} |
| 14 14 | ] |
| 15 15 | end |
| 16 16 | ``` |
| @@ -29,4 +29,4 @@ | |
| 29 29 | {<<"optional">>,false}, |
| 30 30 | {<<"repository">>,<<"hexpm">>}, |
| 31 31 | {<<"requirement">>,<<"~> 1.6">>}]]}. |
| 32 | - {<<"version">>,<<"0.2.1">>}. |
| 32 | + {<<"version">>,<<"0.2.2">>}. |
| @@ -3,7 +3,7 @@ defmodule Nats.ConsumerSupervisor do | |
| 3 3 | use Supervisor |
| 4 4 | require Logger |
| 5 5 | |
| 6 | - @main_topic "nodes.pubsub.*" |
| 6 | + @main_topic "nodes.pubsub.>" |
| 7 7 | |
| 8 8 | def start_link(state) do |
| 9 9 | Supervisor.start_link(__MODULE__, state, name: __MODULE__) |
| @@ -2,7 +2,7 @@ defmodule PhoenixPubsubNats.MixProject do | |
| 2 2 | use Mix.Project |
| 3 3 | |
| 4 4 | @app :phoenix_pubsub_nats |
| 5 | - @version "0.2.1" |
| 5 | + @version "0.2.2" |
| 6 6 | @source_url "https://github.com/eigr-labs/phoenix-pubsub-nats.git" |
| 7 7 | |
| 8 8 | def project do |