Skip to content

Commit

Permalink
support elixir 1.11+, depend on eex explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
the-mikedavis committed Oct 6, 2020
1 parent b68ab97 commit 3654987
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
elixir 1.10.3-otp-21
erlang 21.0
elixir 1.11.0-otp-22
erlang 22.3
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ The format is based on [Keep a
Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.2.5 - 2020-10-06

### Changed

- Harness now explicitly depends on `:eex` as an extra_application
- this resolves compilation warnings on elixir 1.11+

## 0.2.4 - 2020-10-05

### Changed
Expand Down
4 changes: 3 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ defmodule Harness.MixProject do
defp elixirc_paths(_), do: ["lib"]

def application do
[]
[
extra_applications: [:eex]
]
end

defp deps do
Expand Down

0 comments on commit 3654987

Please sign in to comment.