Skip to content

Commit

Permalink
drop support for Ember < 4.8 (#208)
Browse files Browse the repository at this point in the history
* drop support for Ember < 4.8

* fix ember-try scenario declaration
  • Loading branch information
jelhan authored Nov 7, 2023
1 parent 832e635 commit 7b7e338
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ jobs:
fail-fast: true
matrix:
ember-try-scenario: [
ember-lts-3.28,
ember-lts-4.4,
ember-lts-4.8,
ember-lts-4.12,
ember-release,
ember-beta,
ember-canary,
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Element Modifier that resizes a `<textarea>` accordingly to the input.
Compatibility
------------------------------------------------------------------------------

* Ember.js v3.28 or above
* Ember CLI v3.28 or above
* Ember.js v4.8 or above
* Ember CLI v4.8 or above
* Node.js v18 or above

Installation
Expand Down
8 changes: 4 additions & 4 deletions config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ module.exports = async function () {
useYarn: true,
scenarios: [
{
name: 'ember-lts-3.28',
name: 'ember-lts-4.8',
npm: {
devDependencies: {
'ember-source': '~3.28.0',
'ember-source': '~4.8.0',
},
},
},
{
name: 'ember-lts-4.4',
name: 'ember-lts-4.12',
npm: {
devDependencies: {
'ember-source': '~4.4.0',
'ember-source': '~4.12.0',
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"webpack": "5"
},
"peerDependencies": {
"ember-source": ">=3.28.0"
"ember-source": ">=4.8.0"
},
"engines": {
"node": "18.* || >= 20"
Expand Down

0 comments on commit 7b7e338

Please sign in to comment.