Skip to content

Commit

Permalink
chore: release 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceEEC committed Nov 5, 2018
1 parent b8aa6c4 commit ccf01b2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The package can be installed by adding `crux_structs` to your list of dependenci
```elixir
def deps do
[
{:crux_structs, "~> 0.1.5"}
{:crux_structs, "~> 0.1.6"}
]
end
```
Expand Down
11 changes: 7 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Crux.Structs.MixProject do
use Mix.Project

@vsn "0.1.6-dev"
@vsn "0.1.6"
@name :crux_structs

def project do
Expand All @@ -26,14 +26,17 @@ defmodule Crux.Structs.MixProject do
links: %{
"GitHub" => "https://github.com/SpaceEEC/#{@name}/",
"Changelog" => "https://github.com/SpaceEEC/#{@name}/releases/tag/#{@vsn}/",
"Documentation" => "https://hexdocs.pm/#{@name}/",
"Documentation" => "https://hexdocs.pm/#{@name}/#{@vsn}",
"Unified Development Documentation" => "https://crux.randomly.space/"
}
]
end

def application, do: []

defp deps,
do: [{:ex_doc, git: "https://github.com/spaceeec/ex_doc", only: :dev, runtime: false}]
defp deps do
[
{:ex_doc, git: "https://github.com/spaceeec/ex_doc", only: :dev, runtime: false}
]
end
end

0 comments on commit ccf01b2

Please sign in to comment.