Skip to content

Commit 559e9a1

Browse files
committed
deps(ex_doc): point to new ex_doc
1 parent 316225b commit 559e9a1

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 0.1.6 updated ex_doc dep, test fix
2+
3+
# 0.1.5 Smart Defaults
4+
5+
The `--open` flag is now more of a 'force' open. When `mix docs.dash` is called, the docset is opened automatically, unless a docset with the exact name already exists (in that case, the docs update under the hood, but do not need to be re-opened in Dash for the updates to be realized).
6+
7+
The `--name NAME` param now defaults to setting umbrella project names to the result of `File.cwd!() |> Path.basename()`, as this is likely the desired project name anyway.
8+
9+
An `--abbr ABBR` option can be passed to set a custom abbreviation. This can also be edited in Dash's preferences pane by hand. This only works when the docset is first added to Dash - after that, it must be updated via Dash or fully removed and readded.
10+
111
# 0.1.4 tweak margins to match elixir docs
212

313
# 0.1.3 fix app-name overwrite bug

mix.exs

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ defmodule ExDash.Mixfile do
33

44
def project do
55
[app: :ex_dash,
6-
version: "0.1.5",
6+
version: "0.1.6",
77
elixir: "~> 1.4",
88
build_embedded: Mix.env == :prod,
99
start_permanent: Mix.env == :prod,
@@ -32,9 +32,8 @@ defmodule ExDash.Mixfile do
3232
# Type "mix help deps" for more examples and options
3333
defp deps do
3434
[
35-
{:ex_doc, "~> 0.15"},
36-
{:floki, "~> 0.14.0"},
37-
{:inch_ex, "~> 0.5.6", only: [:dev]},
35+
{:ex_doc, "~> 0.16"},
36+
{:floki, "~> 0.14.0"}
3837
]
3938
end
4039

mix.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
%{"earmark": {:hex, :earmark, "1.2.2", "f718159d6b65068e8daeef709ccddae5f7fdc770707d82e7d126f584cd925b74", [:mix], []},
2-
"ex_doc": {:hex, :ex_doc, "0.15.1", "d5f9d588fd802152516fccfdb96d6073753f77314fcfee892b15b6724ca0d596", [:mix], [{:earmark, "~> 1.1", [hex: :earmark, optional: false]}]},
2+
"ex_doc": {:hex, :ex_doc, "0.16.0", "d598d2c654786a3de231202fcd1565a3df6c068c295cebc6d3d57589e8a97ea1", [:mix], [{:earmark, "~> 1.1", [hex: :earmark, optional: false]}]},
33
"floki": {:hex, :floki, "0.14.0", "91a6be57349e10a63cf52d7890479a19012cef9185fa93c305d4fe42e6a50dee", [:mix], [{:mochiweb, "~> 2.15", [hex: :mochiweb, optional: false]}]},
44
"inch_ex": {:hex, :inch_ex, "0.5.6", "418357418a553baa6d04eccd1b44171936817db61f4c0840112b420b8e378e67", [:mix], [{:poison, "~> 1.5 or ~> 2.0 or ~> 3.0", [hex: :poison, optional: false]}]},
55
"mochiweb": {:hex, :mochiweb, "2.15.0", "e1daac474df07651e5d17cc1e642c4069c7850dc4508d3db7263a0651330aacc", [:rebar3], []},

0 commit comments

Comments
 (0)