Skip to content

Commit

Permalink
Bumped the version major number for a potentially incompatible change…
Browse files Browse the repository at this point in the history
… to how comments are handled. Eliminated some warnings and reviewed the hex publishing guide adding some small changes.
  • Loading branch information
Scott Thompson authored and Scott Thompson committed Feb 26, 2017
1 parent 17734a8 commit db7b98d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ defmodule ConfigParser.Mixfile do

def project do
[app: :configparser_ex,
version: "0.2.1",
version: "1.0.0",
name: "ConfigParser for Elixir",
source_url: "https://github.com/easco/configparser_ex",
elixir: "~> 1.0",
description: "A module that parses INI-like files. Not unlike Python configparser package.",
package: package,
deps: deps]
description: "A module that parses INI-like files. Not unlike the Python configparser package.",
package: package(),
deps: deps()]
end

# Configuration for the OTP application
Expand All @@ -34,7 +34,7 @@ defmodule ConfigParser.Mixfile do
end

defp package do
[ contributors: ["Scott Thompson"],
[ maintainers: ["Scott Thompson"],
files: ["mix.exs", "lib", "LICENSE*", "README*"],
licenses: ["bsd"],
links: %{"GitHub" => "https://github.com/easco/configparser_ex"}
Expand Down

0 comments on commit db7b98d

Please sign in to comment.