Skip to content

Commit

Permalink
Merge pull request grpc#5182 from murgatroid99/node_drop_0.10_compat
Browse files Browse the repository at this point in the history
Stop explicitly supporting Node 0.10 and 0.11
  • Loading branch information
nicolasnoble committed Feb 10, 2016
2 parents de79af9 + 8c686e7 commit 673781f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"poisson-process": "^0.2.1"
},
"engines": {
"node": ">=0.10.13"
"node": ">=0.12.0"
},
"binary": {
"module_name": "grpc_node",
Expand Down
2 changes: 1 addition & 1 deletion templates/package.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"poisson-process": "^0.2.1"
},
"engines": {
"node": ">=0.10.13"
"node": ">=0.12.0"
},
"binary": {
"module_name": "grpc_node",
Expand Down
2 changes: 1 addition & 1 deletion tools/run_tests/build_artifact_node.bat
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
@rem (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
@rem OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

set node_versions=0.10.41 0.12.0 1.0.0 1.1.0 2.0.0 3.0.0 4.0.0 5.0.0
set node_versions=0.12.0 1.0.0 1.1.0 2.0.0 3.0.0 4.0.0 5.0.0

set PATH=%PATH%;C:\Program Files\nodejs\;%APPDATA%\npm

Expand Down
2 changes: 1 addition & 1 deletion tools/run_tests/build_artifact_node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ mkdir -p artifacts

npm update

node_versions=( 0.10.41 0.12.0 1.0.0 1.1.0 2.0.0 3.0.0 4.0.0 5.0.0 )
node_versions=( 0.12.0 1.0.0 1.1.0 2.0.0 3.0.0 4.0.0 5.0.0 )

for version in ${node_versions[@]}
do
Expand Down
2 changes: 1 addition & 1 deletion tools/run_tests/distribtest_targets.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,5 +246,5 @@ def targets():
NodeDistribTest('linux', 'x64', os, version)
for os in ('wheezy', 'jessie', 'ubuntu1204', 'ubuntu1404',
'ubuntu1504', 'ubuntu1510', 'ubuntu1604')
for version in ('0.10', '0.12', '3', '4', '5')
for version in ('0.12', '3', '4', '5')
]

0 comments on commit 673781f

Please sign in to comment.