Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
gotthardp committed Jun 3, 2017
1 parent 3061e63 commit 37ceb29
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
]}.

{deps, [
{lorawan_server_api, {git, "https://github.com/gotthardp/lorawan-server-api.git", {branch, "master"}}},
{lorawan_server_api, {git, "https://github.com/gotthardp/lorawan-server-api.git", {tag, "v0.4.3"}}},
{lager, {git, "git://github.com/basho/lager.git", {tag, "3.2.4"}}},
{jsx, {git, "https://github.com/talentdeficit/jsx.git", {tag, "2.8.2"}}},
{cowboy, {git, "https://github.com/ninenines/cowboy", {branch, "master"}}},
Expand Down Expand Up @@ -34,7 +34,7 @@
]}.

{relx, [
{release, {'lorawan-server', "0.4.2"},
{release, {'lorawan-server', "0.4.3"},
[lorawan_server]},
{sys_config, "lorawan_server.config"},
{dev_mode, false},
Expand Down
2 changes: 1 addition & 1 deletion src/lorawan_gw_forwarder.erl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ init([PktFwdOpts]) ->
{ok, Socket} ->
{ok, #state{sock=Socket, tokens=maps:new()}};
{error, Reason} ->
lager:error("Failed to start the packet_forwarder interface: ~w", Reason),
lager:error("Failed to start the packet_forwarder interface: ~w", [Reason]),
{stop, Reason}
end.

Expand Down
2 changes: 1 addition & 1 deletion src/lorawan_server.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
%
{application, lorawan_server,
[{description, "LoRaWAN Application Server"},
{vsn, "0.4.2"},
{vsn, "0.4.3"},
{modules, []},
{registered, []},
{mod, {lorawan_app, []}},
Expand Down

0 comments on commit 37ceb29

Please sign in to comment.