Skip to content

Commit

Permalink
[Dep] Set minimum node version to 10.x within package.json and travis…
Browse files Browse the repository at this point in the history
….yml
  • Loading branch information
eriktrom committed Aug 16, 2020
1 parent 78d093b commit 6e7df9e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ language: node_js
node_js:
# we recommend testing addons with the same minimum supported node version as Ember CLI
# so that your addon works for all apps
- "8"
- "10"

sudo: false
dist: trusty
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
Changelog
---------

## v2.0.1

- [Dep] Set minimum node version to 10.x within package.json and travis.yml *by [html-next](https://github.com/html-next)*

## v2.0.0

- [#129](https://github.com/html-next/ember-gestures/pull/129) [BREAKING] Set minimum node version to 8.x and bump to most recent qunit and ember-cli-babel 7 *by [Lupestro](https://github.com/lupestro)*
- [#128](https://github.com/html-next/ember-gestures/pull/128) Added {recognize-gesture} modifier as alternative to mixin. Modifier requires Ember 2.18 or later to use. *by [Lupestro](https://github.com/lupestro)*

## v1.1.3

- update yarn.lock *by [html-next](https://github.com/html-next)*
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-gestures",
"version": "2.0.0",
"version": "2.0.1",
"description": "TouchAction and Gesture support for Ember Applications",
"keywords": [
"ember-addon",
Expand Down Expand Up @@ -81,7 +81,7 @@
"loader.js": "^4.2.3"
},
"engines": {
"node": "8.* || >= 10.*"
"node": ">= 10.*"
},
"ember-addon": {
"configPath": "tests/dummy/config"
Expand Down

0 comments on commit 6e7df9e

Please sign in to comment.