Skip to content

Commit

Permalink
chore: remove support for ember 3.4
Browse files Browse the repository at this point in the history
BREAKING CHANGE: This removes support for ember 3.4 which is not a
supported LTS version anymore. This also adds a test matrix for the
latest LTS version 3.12
  • Loading branch information
Jonas Metzener authored and anehx committed Nov 4, 2019
1 parent 77539e1 commit cacbd22
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
# we recommend new addons test the current and previous LTS
# as well as latest stable release (bonus points to beta/canary)
- stage: "Additional Tests"
env: EMBER_TRY_SCENARIO=ember-lts-3.4
- env: EMBER_TRY_SCENARIO=ember-lts-3.8
env: EMBER_TRY_SCENARIO=ember-lts-3.8
- env: EMBER_TRY_SCENARIO=ember-lts-3.12
- env: EMBER_TRY_SCENARIO=ember-release
- env: EMBER_TRY_SCENARIO=ember-beta
- env: EMBER_TRY_SCENARIO=ember-canary
Expand Down
8 changes: 4 additions & 4 deletions config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ module.exports = async function() {
return {
scenarios: [
{
name: "ember-lts-3.4",
name: "ember-lts-3.8",
npm: {
devDependencies: {
"ember-source": "~3.4.0"
"ember-source": "~3.8.0"
}
}
},
{
name: "ember-lts-3.8",
name: "ember-lts-3.12",
npm: {
devDependencies: {
"ember-source": "~3.8.0"
"ember-source": "~3.12.0"
}
}
},
Expand Down

0 comments on commit cacbd22

Please sign in to comment.