Skip to content

Commit

Permalink
Add project description
Browse files Browse the repository at this point in the history
  • Loading branch information
doorgan committed May 28, 2021
1 parent d3256f9 commit 024bd0f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Add `:sourceror` as a dependency to your project's `mix.exs`:
```elixir
defp deps do
[
{:sourceror, "~> 0.2.1"}
{:sourceror, "~> 0.2.2"}
]
end
```
Expand Down
7 changes: 6 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
defmodule Sourceror.MixProject do
use Mix.Project

@version "0.2.1"
@version "0.2.2"
@repo_url "https://github.com/doorgan/sourceror"

def project do
[
app: :sourceror,
name: "Sourceror",
description: description(),
version: @version,
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
Expand Down Expand Up @@ -59,6 +60,10 @@ defmodule Sourceror.MixProject do
]
end

defp description do
"Utilities to work with Elixir source code."
end

defp package do
[
licenses: ["Apache-2.0"],
Expand Down

0 comments on commit 024bd0f

Please sign in to comment.