Skip to content
This repository was archived by the owner on Aug 11, 2022. It is now read-only.

Commit c7bbba8

Browse files
committed
unsupported,travis: Remove 0.12 from our supported list
Credit: @iarna
1 parent 40883fc commit c7bbba8

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ matrix:
2020
# then master
2121
- node_js: "7"
2222
env: DEPLOY_VERSION=testing
23-
# then 0.12, which is still in maintenance mode until the end of 2016 I guess?
24-
# https://github.com/nodejs/LTS#lts-schedule
25-
- node_js: "0.12"
26-
env: DEPLOY_VERSION=testing
2723
before_install:
2824
# required by test/tap/registry.js
2925
- "mkdir -p /var/run/couchdb"

lib/utils/unsupported.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22
var semver = require('semver')
3-
var supportedNode = '0.12 || >= 4'
3+
var supportedNode = '>= 4'
44
var knownBroken = '>=0.1 <=0.7'
55

66
var checkVersion = exports.checkVersion = function (version) {

test/tap/unsupported.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var versions = [
1515
['v0.9.6', false, true],
1616
['v0.10.48', false, true],
1717
['v0.11.16', false, true],
18-
['v0.12.9', false, false],
18+
['v0.12.9', false, true],
1919
['v1.0.1', false, true],
2020
['v1.6.0', false, true],
2121
['v2.3.1', false, true],

0 commit comments

Comments
 (0)