Skip to content

Commit

Permalink
Release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Fornoff committed Apr 16, 2018
1 parent 3a1311a commit 5aed1f5
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@ defmodule Vex.Mixfile do
use Mix.Project

def project do
[ app: :vex,
version: "0.6.0",
[
app: :vex,
version: "0.7.0",
elixir: "~> 1.2",
deps: deps(),
consolidate_protocols: Mix.env != :test,
consolidate_protocols: Mix.env() != :test,
package: package(),

# Docs
name: "Vex",
source_url: "https://github.com/CargoSense/vex",
homepage_url: "https://github.com/CargoSense/vex",
docs: [main: "readme",
extras: ["README.md"]]]
docs: [main: "readme", extras: ["README.md"]]
]
end

# Configuration for the OTP application
Expand All @@ -27,11 +28,12 @@ defmodule Vex.Mixfile do
end

defp package do
[contributors: ["Bruce Williams", "Ben Wilson", "John Hyland"],
maintainers: ["Bruce Williams", "Ben Wilson", "John Hyland"],
licenses: ["MIT License"],
description: "An extensible data validation library for Elixir",
links: %{github: "https://github.com/CargoSense/vex"}]
[
contributors: ["Bruce Williams", "Ben Wilson", "John Hyland"],
maintainers: ["Bruce Williams", "Ben Wilson", "John Hyland"],
licenses: ["MIT License"],
description: "An extensible data validation library for Elixir",
links: %{github: "https://github.com/CargoSense/vex"}
]
end

end

0 comments on commit 5aed1f5

Please sign in to comment.