Skip to content

Commit 6e7df9e

Browse files
committed
[Dep] Set minimum node version to 10.x within package.json and travis.yml
1 parent 78d093b commit 6e7df9e

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ language: node_js
33
node_js:
44
# we recommend testing addons with the same minimum supported node version as Ember CLI
55
# so that your addon works for all apps
6-
- "8"
6+
- "10"
77

88
sudo: false
99
dist: trusty

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
Changelog
22
---------
33

4+
## v2.0.1
5+
6+
- [Dep] Set minimum node version to 10.x within package.json and travis.yml *by [html-next](https://github.com/html-next)*
7+
48
## v2.0.0
59

610
- [#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)*
711
- [#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)*
8-
12+
913
## v1.1.3
1014

1115
- update yarn.lock *by [html-next](https://github.com/html-next)*

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ember-gestures",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "TouchAction and Gesture support for Ember Applications",
55
"keywords": [
66
"ember-addon",
@@ -81,7 +81,7 @@
8181
"loader.js": "^4.2.3"
8282
},
8383
"engines": {
84-
"node": "8.* || >= 10.*"
84+
"node": ">= 10.*"
8585
},
8686
"ember-addon": {
8787
"configPath": "tests/dummy/config"

0 commit comments

Comments
 (0)