Skip to content

Commit

Permalink
Bump patch version to fix Mix 1.9 errors
Browse files Browse the repository at this point in the history
As noted in #12, #14, #15, #16, #17, and even way back in a comment on
a5fb55b, my prior inclination to try to
use `:included_applications` and `:applications` separately was
ill-fated. Under Elixir 1.9.0, Mix started blowing up properly on `mix
release` with

  ** (Mix) :combine is listed both as a regular application and as an
  included application

So I guess everything should go under `:applications` by design. /shrug

I'm trusting this to be backwards-compatible with Elixir 1.3, per the
discussions on #1 from way back when. 😅
  • Loading branch information
Alex Vondrak committed Aug 20, 2019
1 parent d1e5e51 commit 7870f4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule RemoteIp.Mixfile do

def project do
[app: :remote_ip,
version: "0.1.4",
version: "0.1.5",
elixir: "~> 1.3",
package: package(),
description: description(),
Expand Down

1 comment on commit 7870f4c

@alexandremcosta
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thank you!

Please sign in to comment.