Commit cda3352c by Mithgol

Merge pull request #333 from mapbox/drop-node-0.8

drop support for Node.js 0.8.x branch
parents 1c91b374 fe7d6aa2
...@@ -13,7 +13,6 @@ branches: ...@@ -13,7 +13,6 @@ branches:
env: env:
matrix: matrix:
- NODE_VERSION="0.8"
- NODE_VERSION="0.10" - NODE_VERSION="0.10"
- NODE_VERSION="0.11" - NODE_VERSION="0.11"
- NODE_WEBKIT="0.8.6" TARGET_ARCH="ia32" - NODE_WEBKIT="0.8.6" TARGET_ARCH="ia32"
......
# Changelog # Changelog
## 3.0.0
Released September 2nd, 2014
- Backwards-incompatible change: node versions 0.8.x are no longer supported.
## 2.2.7 ## 2.2.7
Released August 6th, 2014 Released August 6th, 2014
......
...@@ -8,7 +8,7 @@ Asynchronous, non-blocking [SQLite3](http://sqlite.org/) bindings for [Node.js]( ...@@ -8,7 +8,7 @@ Asynchronous, non-blocking [SQLite3](http://sqlite.org/) bindings for [Node.js](
## Supported platforms ## Supported platforms
The `sqlite3` module works with Node.js v0.8.x, v0.10.x or v0.11.x (though only v0.11.13 and above). The `sqlite3` module works with Node.js v0.10.x or v0.11.x (though only v0.11.13 and above).
Binaries for most Node versions and platforms are provided by default via [node-pre-gyp](https://github.com/springmeyer/node-pre-gyp). Binaries for most Node versions and platforms are provided by default via [node-pre-gyp](https://github.com/springmeyer/node-pre-gyp).
......
...@@ -10,10 +10,6 @@ environment: ...@@ -10,10 +10,6 @@ environment:
- nodejs_version: 0.10.30 - nodejs_version: 0.10.30
nw_version: 0.8.6 nw_version: 0.8.6
PLATFORM: x64 PLATFORM: x64
- nodejs_version: 0.8.28
PLATFORM: x86
- nodejs_version: 0.8.28
PLATFORM: x64
- nodejs_version: 0.11.13 - nodejs_version: 0.11.13
nw_version: 0.10.2 nw_version: 0.10.2
PLATFORM: x86 PLATFORM: x86
......
{ {
"name": "sqlite3", "name": "sqlite3",
"description": "Asynchronous, non-blocking SQLite3 bindings", "description": "Asynchronous, non-blocking SQLite3 bindings",
"version": "2.2.7", "version": "3.0.0",
"homepage": "http://github.com/mapbox/node-sqlite3", "homepage": "http://github.com/mapbox/node-sqlite3",
"author": { "author": {
"name": "MapBox", "name": "MapBox",
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
"aws-sdk": "~2.0.4" "aws-sdk": "~2.0.4"
}, },
"engines": { "engines": {
"node": ">= 0.8.0 < 0.11.0 || >= 0.11.13 < 0.13.0" "node": ">= 0.10.0 < 0.11.0 || >= 0.11.13 < 0.13.0"
}, },
"engineStrict": true, "engineStrict": true,
"scripts": { "scripts": {
......
...@@ -27,23 +27,3 @@ npm install --build-from-source ...@@ -27,23 +27,3 @@ npm install --build-from-source
npm test npm test
node-pre-gyp package publish node-pre-gyp package publish
node-pre-gyp clean node-pre-gyp clean
@ rem 32 bit v0.8x
set NODIST_X64=0
nodist use v0.8
node -e "console.log(process.version + ' ' + process.arch)"
node-pre-gyp clean
npm install --build-from-source
npm test
node-pre-gyp package publish
node-pre-gyp clean
@rem 64 bit v0.8.x
set NODIST_X64=1
nodist use v0.8
node -e "console.log(process.version + ' ' + process.arch)"
node-pre-gyp clean
npm install --build-from-source
npm test
node-pre-gyp package publish
node-pre-gyp clean
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment