diff --git a/LICENSE.md b/LICENSE similarity index 100% rename from LICENSE.md rename to LICENSE diff --git a/README.md b/README.md index 53408d0..a198edc 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ The package can be installed by adding `:licensir` to your list of dependencies ```elixir def deps do [ - {:licensir, "~> 0.6", only: :dev, runtime: false} + {:licensir, "~> 0.7", only: :dev, runtime: false} ] end ``` @@ -29,7 +29,7 @@ This mix task in most cases only needs to be run on a development machine and in If you do not wish to include this tool as part of your dependencies, you may also install it locally by running: ```elixir -$ mix archive.install hex licensir 0.6.2 +$ mix archive.install hex licensir 0.7.0 ``` Now you can access this tool from any path on your local machine that has access to `mix`. diff --git a/mix.exs b/mix.exs index c1ad698..32ccbfe 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Licensir.Mixfile do use Mix.Project @source_url "https://github.com/unnawut/licensir" - @version "0.6.2" + @version "0.7.0" def project do [ @@ -51,7 +51,7 @@ defmodule Licensir.Mixfile do defp docs do [ extras: [ - "LICENSE.md": [title: "License"], + "LICENSE": [title: "License"], "README.md": [title: "Overview"] ], main: "readme",