Skip to content
This repository has been archived by the owner on May 14, 2018. It is now read-only.

Commit

Permalink
Problem: Timex requires Elixir 1.3 and builds fail due to Elixir 1.2 …
Browse files Browse the repository at this point in the history
…environment

Solution: Update required Elixir version to >= 1.3.0 and update Travis config accordingly
  • Loading branch information
c-rack committed Aug 5, 2016
1 parent 8fa03cf commit 59bee68
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
@@ -1,14 +1,14 @@
language: elixir
sudo: false
elixir:
- 1.2.0
- 1.2.1
- 1.2.2
- 1.2.3
- 1.3.0
- 1.3.1
- 1.3.2
otp_release:
- 18.0
- 18.1
- 18.2
- 19.0
after_success:
- "mix compile && mix coveralls.travis"
after_script:
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Expand Up @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Changed

- Requires Elixir >= 1.3

## [1.7.1] - 2016-03-24
### Added
Expand All @@ -20,7 +23,6 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Elixir 1.2 to Travis-CI config
- Prevent duplicate job-names at runtime ([Kai Faber](https://github.com/kaiatgithub))


### Changed
- ToC markdown
- Default values are now configurable
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Expand Up @@ -21,7 +21,7 @@ defmodule Quantum.Mixfile do
source_ref: "v#{@version}",
source_url: "https://github.com/c-rack/quantum-elixir"
],
elixir: ">= 1.2.0",
elixir: ">= 1.3.0",
name: "Quantum",
package: package,
start_permanent: Mix.env == :prod,
Expand Down

0 comments on commit 59bee68

Please sign in to comment.