From d535ea8700e6a5780447022babdf83c721fa44d1 Mon Sep 17 00:00:00 2001 From: Stephen Moloney Date: Mon, 11 Feb 2019 11:11:45 +0000 Subject: [PATCH] Remove elixir 1.3.x from the build matrix What does this commit/MR/PR do ? - Remove elixir 1.3.x from the build matrix - Support for elixir 1.3 dropped Why is this commit/MR/PR needed ? - To indicate that elixir 1.3 or below is not supported --- .travis.yml | 11 ++--------- CHANGELOG.md | 2 ++ 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 221b2aa..1e57353 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,7 +28,7 @@ jobs: --exclude='./_build' \ --exec-args='--frail --rc-path ./.remarkrc' - - stage: markdown-lint + - stage: elixir-lint language: elixir elixir: 1.8 otp_release: 21.2 @@ -36,15 +36,8 @@ jobs: - mix format --check-formatted --dry-run - &test - stage: test-1.3 - language: elixir - elixir: 1.3 - otp_release: 19.2 - script: - - mix test - - - <<: *test stage: test-1.4 + language: elixir elixir: 1.4 otp_release: 19.2 diff --git a/CHANGELOG.md b/CHANGELOG.md index b2a55cb..392e818 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,8 @@ a Repo module confusingly - [PR](https://github.com/stephenmoloney/scrivener_lis `use` statement when creating a `Repo` module as is required for Ecto 3+. +- Elixir 1.4+ is required for scrivener_ecto 2.x + ## v1.0.1 - Cannot pass %Scrivener.Config.t into `Scrivener.Repo.paginate`. Change docs to reflect this.