From 5087a4fb120901d8b4ae79448d529676ec3f0369 Mon Sep 17 00:00:00 2001 From: Marcel Otto Date: Sun, 25 Jun 2017 21:15:55 +0200 Subject: [PATCH] Drop support for Elixir versions < 1.4 --- .travis.yml | 5 ++++- CHANGELOG.md | 8 ++++++++ mix.exs | 4 ++-- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index e288c38..11b2c44 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,10 @@ language: elixir elixir: + - 1.4.5 - 1.4.4 - - 1.3.4 + - 1.4.2 + - 1.4.1 + - 1.4.0 otp_release: - 19.3 - 18.3 diff --git a/CHANGELOG.md b/CHANGELOG.md index dda8d1c..d8b2c38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a CHANGELOG](http://keepachangelog.com). +## Unreleased + +### Changed + +- Don't support Elixir versions < 1.4 + + + ## 0.1.1 - 2017-06-25 ### Fixed diff --git a/mix.exs b/mix.exs index 25a1d0a..0344207 100644 --- a/mix.exs +++ b/mix.exs @@ -9,7 +9,7 @@ defmodule RDF.Mixfile do [ app: :rdf, version: @version, - elixir: "~> 1.3", + elixir: "~> 1.4", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, deps: deps(), @@ -45,7 +45,7 @@ defmodule RDF.Mixfile do end def application do - [applications: [:logger]] + [extra_applications: [:logger]] end defp deps do