Current section
12 Versions
Jump to
Current section
12 Versions
Compare versions
2
files changed
+14
additions
-3
deletions
| @@ -1,6 +1,6 @@ | |
| 1 1 | {<<"links">>,[{<<"GitHub">>,<<"https://github.com/azer/carve">>}]}. |
| 2 2 | {<<"name">>,<<"carve">>}. |
| 3 | - {<<"version">>,<<"0.1.0">>}. |
| 3 | + {<<"version">>,<<"0.1.1">>}. |
| 4 4 | {<<"description">>, |
| 5 5 | <<"DSL for building JSON APIs fast. Creates endpoint views, renders linked data automatically.">>}. |
| 6 6 | {<<"elixir">>,<<"~> 1.12">>}. |
| @@ -4,7 +4,7 @@ defmodule Carve.MixProject do | |
| 4 4 | def project do |
| 5 5 | [ |
| 6 6 | app: :carve, |
| 7 | - version: "0.1.0", |
| 7 | + version: "0.1.1", |
| 8 8 | elixir: "~> 1.12", |
| 9 9 | start_permanent: Mix.env() == :prod, |
| 10 10 | deps: deps(), |
| @@ -12,7 +12,18 @@ defmodule Carve.MixProject do | |
| 12 12 | package: package(), |
| 13 13 | name: "Carve", |
| 14 14 | source_url: "https://github.com/azer/carve", |
| 15 | - elixirc_paths: elixirc_paths(Mix.env()) |
| 15 | + elixirc_paths: elixirc_paths(Mix.env()), |
| 16 | + package: [ |
| 17 | + licenses: ["MIT"], |
| 18 | + links: %{ |
| 19 | + "GitHub" => @source_url |
| 20 | + } |
| 21 | + ], |
| 22 | + docs: [ |
| 23 | + # The main page in the docs |
| 24 | + main: "readme", |
| 25 | + extras: ["README.md"] |
| 26 | + ] |
| 16 27 | ] |
| 17 28 | end |