Skip to content

Commit

Permalink
bumped elixir version because of ExDoc updates/formatting // removed …
Browse files Browse the repository at this point in the history
…depricated from handle_info
  • Loading branch information
k-cross committed Aug 10, 2018
1 parent 0ed6fed commit faa74ae
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
4 changes: 1 addition & 3 deletions lib/briefly/entry.ex
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@ defmodule Briefly.Entry do
{:noreply, state}
end

def handle_info(msg, state) do
super(msg, state)
end
def handle_info(_msg, state), do: {:noreply, state}

## Helpers

Expand Down
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ defmodule Briefly.Mixfile do
def project do
[
app: :briefly,
version: "0.3.1",
elixir: "~> 1.6",
version: "0.4.0",
elixir: "~> 1.7",
source_url: "https://github.com/CargoSense/briefly",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
Expand All @@ -32,7 +32,7 @@ defmodule Briefly.Mixfile do
# Type `mix help deps` for more examples and options
defp deps do
[
{:ex_doc, "~> 0.8", only: :dev}
{:ex_doc, "~> 0.19", only: :dev, runtime: false}
]
end

Expand Down
9 changes: 7 additions & 2 deletions mix.lock
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
%{"earmark": {:hex, :earmark, "1.2.4", "99b637c62a4d65a20a9fb674b8cffb8baa771c04605a80c911c4418c69b75439", [:mix], [], "hexpm"},
"ex_doc": {:hex, :ex_doc, "0.18.1", "37c69d2ef62f24928c1f4fdc7c724ea04aecfdf500c4329185f8e3649c915baf", [:mix], [{:earmark, "~> 1.1", [hex: :earmark, repo: "hexpm", optional: false]}], "hexpm"}}
%{
"earmark": {:hex, :earmark, "1.2.5", "4d21980d5d2862a2e13ec3c49ad9ad783ffc7ca5769cf6ff891a4553fbaae761", [:mix], [], "hexpm"},
"ex_doc": {:hex, :ex_doc, "0.19.1", "519bb9c19526ca51d326c060cb1778d4a9056b190086a8c6c115828eaccea6cf", [:mix], [{:earmark, "~> 1.1", [hex: :earmark, repo: "hexpm", optional: false]}, {:makeup_elixir, "~> 0.7", [hex: :makeup_elixir, repo: "hexpm", optional: false]}], "hexpm"},
"makeup": {:hex, :makeup, "0.5.1", "966c5c2296da272d42f1de178c1d135e432662eca795d6dc12e5e8787514edf7", [:mix], [{:nimble_parsec, "~> 0.2.2", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm"},
"makeup_elixir": {:hex, :makeup_elixir, "0.8.0", "1204a2f5b4f181775a0e456154830524cf2207cf4f9112215c05e0b76e4eca8b", [:mix], [{:makeup, "~> 0.5.0", [hex: :makeup, repo: "hexpm", optional: false]}, {:nimble_parsec, "~> 0.2.2", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm"},
"nimble_parsec": {:hex, :nimble_parsec, "0.2.2", "d526b23bdceb04c7ad15b33c57c4526bf5f50aaa70c7c141b4b4624555c68259", [:mix], [], "hexpm"},
}

0 comments on commit faa74ae

Please sign in to comment.