Skip to content

Commit

Permalink
Drop explicit support for Node.js v5 (#936)
Browse files Browse the repository at this point in the history
Node.js v5 has been dropped by node core as it is not an LTS version.

We still support 0.10 and 0.12 because there are a few devices out there who absolutely cannot upgrade. (The begalbone black is one of them.) When this changes or if their use drops we'll drop support for pre Node 4.0.
  • Loading branch information
reconbot committed Sep 20, 2016
1 parent 1bdcf15 commit f4f4bd8
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 29 deletions.
24 changes: 12 additions & 12 deletions .docs/README.hbs
Expand Up @@ -60,18 +60,18 @@ For getting started with node-serialport, we recommend you begin with the follow
## Platform Support
`serialport` supports and tests against the following platforms, architectures and node versions.

| Platform / Arch | Node v0.10.x | Node v0.12.x | Node v4.x | Node v5.x | Node v6.x |
| --- | --- | --- | --- | --- | --- |
| Linux / ia32 | ☑ | ☑ | ☑ | ☑ | ☑ |
| Linux / x64 | ☑ | ☑ | ☑ | ☑ | ☑ |
| Linux / ARM v6¹ | ☐ | ☐ | ☐ | ☐ | ☐ |
| Linux / ARM v7¹ | ☐ | ☐ | ☐ | ☐ | ☐ |
| Linux / ARM v8¹ | ☐ | ☐ | ☐ | ☐ | ☐ |
| Linux / MIPSel¹ | ☐ | ☐ | ☐ | ☐ | ☐ |
| Linux / PPC64¹ | ☐ | ☐ | ☐ | ☐ | ☐ |
| Windows² / x86 | ☑ | ☑ | ☑ | ☑ | ☑ |
| Windows² / x64 | ☑ | ☑ | ☑ | ☑ | ☑ |
| OSX³ / x64 | ☑ | ☑ | ☑ | ☑ | ☑ |
| Platform / Arch | Node v0.10.x | Node v0.12.x | Node v4.x | Node v6.x |
| --- | --- | --- | --- | --- |
| Linux / ia32 | ☑ | ☑ | ☑ | ☑ |
| Linux / x64 | ☑ | ☑ | ☑ | ☑ |
| Linux / ARM v6¹ | ☐ | ☐ | ☐ | ☐ |
| Linux / ARM v7¹ | ☐ | ☐ | ☐ | ☐ |
| Linux / ARM v8¹ | ☐ | ☐ | ☐ | ☐ |
| Linux / MIPSel¹ | ☐ | ☐ | ☐ | ☐ |
| Linux / PPC64¹ | ☐ | ☐ | ☐ | ☐ |
| Windows² / x86 | ☑ | ☑ | ☑ | ☑ |
| Windows² / x64 | ☑ | ☑ | ☑ | ☑ |
| OSX³ / x64 | ☑ | ☑ | ☑ | ☑ |

¹ ARM, MIPSel and PPC64¹ platforms are known to work but are not currently part of our test or build matrix. [#846](https://github.com/EmergingTechnologyAdvisors/node-serialport/issues/846) ARM v4 and v5 was dropped from NodeJS after Node v0.10.

Expand Down
4 changes: 0 additions & 4 deletions .travis.yml
Expand Up @@ -24,8 +24,6 @@ env:
- TRAVIS_NODE_VERSION="0.12" ARCH="x86"
- TRAVIS_NODE_VERSION="4"
- TRAVIS_NODE_VERSION="4" ARCH="x86"
- TRAVIS_NODE_VERSION="5"
- TRAVIS_NODE_VERSION="5" ARCH="x86"
- TRAVIS_NODE_VERSION="6"
- TRAVIS_NODE_VERSION="6" ARCH="x86"
matrix:
Expand All @@ -36,8 +34,6 @@ matrix:
env: TRAVIS_NODE_VERSION="0.12" ARCH="x86"
- os: osx
env: TRAVIS_NODE_VERSION="4" ARCH="x86"
- os: osx
env: TRAVIS_NODE_VERSION="5" ARCH="x86"
- os: osx
env: TRAVIS_NODE_VERSION="6" ARCH="x86"

Expand Down
24 changes: 12 additions & 12 deletions README.md
Expand Up @@ -81,18 +81,18 @@ For getting started with node-serialport, we recommend you begin with the follow
## Platform Support
`serialport` supports and tests against the following platforms, architectures and node versions.

| Platform / Arch | Node v0.10.x | Node v0.12.x | Node v4.x | Node v5.x | Node v6.x |
| --- | --- | --- | --- | --- | --- |
| Linux / ia32 ||||||
| Linux / x64 ||||||
| Linux / ARM v6¹ ||||||
| Linux / ARM v7¹ ||||||
| Linux / ARM v8¹ ||||||
| Linux / MIPSel¹ ||||||
| Linux / PPC64¹ ||||||
| Windows² / x86 ||||||
| Windows² / x64 ||||||
| OSX³ / x64 ||||||
| Platform / Arch | Node v0.10.x | Node v0.12.x | Node v4.x | Node v6.x |
| --- | --- | --- | --- | --- |
| Linux / ia32 |||||
| Linux / x64 |||||
| Linux / ARM v6¹ |||||
| Linux / ARM v7¹ |||||
| Linux / ARM v8¹ |||||
| Linux / MIPSel¹ |||||
| Linux / PPC64¹ |||||
| Windows² / x86 |||||
| Windows² / x64 |||||
| OSX³ / x64 |||||

¹ ARM, MIPSel and PPC64¹ platforms are known to work but are not currently part of our test or build matrix. [#846](https://github.com/EmergingTechnologyAdvisors/node-serialport/issues/846) ARM v4 and v5 was dropped from NodeJS after Node v0.10.

Expand Down
1 change: 0 additions & 1 deletion appveyor.yml
Expand Up @@ -9,7 +9,6 @@ environment:
- nodejs_version: "0.10"
- nodejs_version: "0.12"
- nodejs_version: "4"
- nodejs_version: "5"
- nodejs_version: "6"

platform:
Expand Down

0 comments on commit f4f4bd8

Please sign in to comment.