Current section
4 Versions
Jump to
Current section
4 Versions
Compare versions
3
files changed
+28
additions
-28
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.2"} |
| 13 | + {:phoenix_pubsub_nats, "~> 0.2"} |
| 14 14 | ] |
| 15 15 | end |
| 16 16 | ``` |
| @@ -1,32 +1,32 @@ | |
| 1 | - {<<"app">>,<<"phoenix_pubsub_nats">>}. |
| 2 | - {<<"build_tools">>,[<<"mix">>]}. |
| 3 | - {<<"description">>,<<"Phoenix PubSub adapter based on Nats">>}. |
| 4 | - {<<"elixir">>,<<"~> 1.14">>}. |
| 5 | - {<<"files">>, |
| 6 | - [<<"lib">>,<<"lib/nats">>,<<"lib/nats/nats_pubsub.ex">>, |
| 7 | - <<"lib/nats/consumer.ex">>,<<"lib/nats/consumer_supervisor.ex">>, |
| 8 | - <<"lib/nats/serializer">>,<<"lib/nats/serializer/native.ex">>, |
| 9 | - <<"lib/nats/serializer/json.ex">>,<<"lib/nats/serializer.ex">>, |
| 10 | - <<"lib/phoenix_pubsub_nats.ex">>,<<"mix.exs">>,<<"README.md">>, |
| 11 | - <<"LICENSE">>]}. |
| 12 | - {<<"licenses">>,[<<"Apache-2.0">>]}. |
| 13 1 | {<<"links">>, |
| 14 2 | [{<<"GitHub">>,<<"https://github.com/eigr-labs/phoenix-pubsub-nats.git">>}]}. |
| 15 3 | {<<"name">>,<<"phoenix_pubsub_nats">>}. |
| 4 | + {<<"version">>,<<"0.2.3">>}. |
| 5 | + {<<"description">>,<<"Phoenix PubSub adapter based on Nats">>}. |
| 6 | + {<<"elixir">>,<<"~> 1.14">>}. |
| 7 | + {<<"app">>,<<"phoenix_pubsub_nats">>}. |
| 8 | + {<<"files">>, |
| 9 | + [<<"lib">>,<<"lib/nats">>,<<"lib/nats/consumer.ex">>, |
| 10 | + <<"lib/nats/serializer.ex">>,<<"lib/nats/serializer">>, |
| 11 | + <<"lib/nats/serializer/json.ex">>,<<"lib/nats/serializer/native.ex">>, |
| 12 | + <<"lib/nats/nats_pubsub.ex">>,<<"lib/nats/consumer_supervisor.ex">>, |
| 13 | + <<"lib/phoenix_pubsub_nats.ex">>,<<"mix.exs">>,<<"README.md">>, |
| 14 | + <<"LICENSE">>]}. |
| 15 | + {<<"licenses">>,[<<"Apache-2.0">>]}. |
| 16 16 | {<<"requirements">>, |
| 17 | - [[{<<"app">>,<<"jason">>}, |
| 18 | - {<<"name">>,<<"jason">>}, |
| 17 | + [[{<<"name">>,<<"jason">>}, |
| 18 | + {<<"app">>,<<"jason">>}, |
| 19 19 | {<<"optional">>,false}, |
| 20 | - {<<"repository">>,<<"hexpm">>}, |
| 21 | - {<<"requirement">>,<<"~> 1.3">>}], |
| 22 | - [{<<"app">>,<<"phoenix_pubsub">>}, |
| 23 | - {<<"name">>,<<"phoenix_pubsub">>}, |
| 20 | + {<<"requirement">>,<<"~> 1.3">>}, |
| 21 | + {<<"repository">>,<<"hexpm">>}], |
| 22 | + [{<<"name">>,<<"phoenix_pubsub">>}, |
| 23 | + {<<"app">>,<<"phoenix_pubsub">>}, |
| 24 24 | {<<"optional">>,false}, |
| 25 | - {<<"repository">>,<<"hexpm">>}, |
| 26 | - {<<"requirement">>,<<"~> 2.1">>}], |
| 27 | - [{<<"app">>,<<"gnat">>}, |
| 28 | - {<<"name">>,<<"gnat">>}, |
| 25 | + {<<"requirement">>,<<"~> 2.1">>}, |
| 26 | + {<<"repository">>,<<"hexpm">>}], |
| 27 | + [{<<"name">>,<<"gnat">>}, |
| 28 | + {<<"app">>,<<"gnat">>}, |
| 29 29 | {<<"optional">>,false}, |
| 30 | - {<<"repository">>,<<"hexpm">>}, |
| 31 | - {<<"requirement">>,<<"~> 1.6">>}]]}. |
| 32 | - {<<"version">>,<<"0.2.2">>}. |
| 30 | + {<<"requirement">>,<<"~> 1.10">>}, |
| 31 | + {<<"repository">>,<<"hexpm">>}]]}. |
| 32 | + {<<"build_tools">>,[<<"mix">>]}. |
| @@ -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.2" |
| 5 | + @version "0.2.3" |
| 6 6 | @source_url "https://github.com/eigr-labs/phoenix-pubsub-nats.git" |
| 7 7 | |
| 8 8 | def project do |
| @@ -51,7 +51,7 @@ defmodule PhoenixPubsubNats.MixProject do | |
| 51 51 | [ |
| 52 52 | {:jason, "~> 1.3"}, |
| 53 53 | {:phoenix_pubsub, "~> 2.1"}, |
| 54 | - {:gnat, "~> 1.6"}, |
| 54 | + {:gnat, "~> 1.10"}, |
| 55 55 | {:ex_doc, ">= 0.0.0", only: :dev, runtime: false} |
| 56 56 | ] |
| 57 57 | end |