Skip to content

Commit

Permalink
✨ 🔥 remove node 0.10 support, add node 6 support
Browse files Browse the repository at this point in the history
refs #6899, refs #7098
  • Loading branch information
kirrg001 authored and ErisDS committed Sep 20, 2016
1 parent 79bf09a commit 6275fdb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ language: node_js
node_js:
- "4"
- "0.12"
- "0.10"
- "6"
sudo: false
cache:
Expand All @@ -26,8 +25,6 @@ matrix:
include:
- node_js: "4"
env: TEST_SUITE=lint
allow_failures:
- node_js: "6"
fast_finish: true
branches:
except:
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ The project is maintained by a non-profit organisation called the **Ghost Founda

# Quick Start Install

Make sure you've installed Node.js - We recommend the latest **Node v4 LTS** release. For other versions [click here](http://support.ghost.org/supported-node-versions/). May contain nuts.
Make sure you've installed Node.js - Latest **Node v4 LTS** release is required. We don't support 0.10.x anymore, see https://dev.ghost.org/end-of-node-js-0-10/.
For other versions [click here](http://support.ghost.org/supported-node-versions/). May contain nuts.

1. Download the [latest release](https://ghost.org/developers/) of Ghost
1. Unzip in the location you want to install
Expand All @@ -40,7 +41,7 @@ Install Node.js. (See [Supported Node.js versions](http://support.ghost.org/supp

```bash
# Node v4.2+ LTS - recommended
# Node v0.10.x and v0.12.x - supported
# Node v6.5+ and v0.12.x - supported
#
# Choose wisely
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"test": "grunt validate --verbose"
},
"engines": {
"node": "~0.10.0 || ~0.12.0 || ^4.2.0"
"node": "~0.12.0 || ^4.2.0 || ^6.5.0"
},
"dependencies": {
"amperize": "0.3.1",
Expand Down

0 comments on commit 6275fdb

Please sign in to comment.