Skip to content

Commit 65ffb45

Browse files
author
Dane Springmeyer
committed
bump to v0.7.0 / drop node v0.10.x support
1 parent 203e388 commit 65ffb45

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# node-pre-gyp changelog
22

3+
## 0.7.0
4+
5+
- Updated request and hawk (#347)
6+
- Dropped node v0.10.x support
7+
38
## 0.6.40
49

510
- Improved error reporting if an install fails

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ See the [Frequently Ask Questions](https://github.com/mapbox/node-pre-gyp/wiki/F
3030

3131
## Depends
3232

33-
- Node.js >= node v0.10.x
33+
- Node.js >= node v4.x
3434

3535
## Install
3636

@@ -74,7 +74,7 @@ Options include:
7474
- `--update-binary`: reinstall by replacing previously installed local binary with remote binary
7575
- `--runtime=node-webkit`: customize the runtime: `node`, `electron` and `node-webkit` are the valid options
7676
- `--fallback-to-build`: fallback to building from source if pre-built binary is not available
77-
- `--target=0.10.25`: Pass the target node or node-webkit version to compile against
77+
- `--target=0.4.0`: Pass the target node or node-webkit version to compile against
7878
- `--target_arch=ia32`: Pass the target arch and override the host `arch`. Valid values are 'ia32','x64', or `arm`.
7979
- `--target_platform=win32`: Pass the target platform and override the host `platform`. Valid values are `linux`, `darwin`, `win32`, `sunos`, `freebsd`, `openbsd`, and `aix`.
8080

@@ -482,8 +482,8 @@ os:
482482
483483
env:
484484
matrix:
485-
- NODE_VERSION="0.10"
486-
- NODE_VERSION="0.11.14"
485+
- NODE_VERSION="4"
486+
- NODE_VERSION="6"
487487
488488
before_install:
489489
- rm -rf ~/.nvm/ && git clone --depth 1 https://github.com/creationix/nvm.git ~/.nvm
@@ -518,8 +518,8 @@ By doing:
518518
```yml
519519
env:
520520
matrix:
521-
- NODE_VERSION="0.10"
522-
- NODE_VERSION="0.11.14"
521+
- NODE_VERSION="4"
522+
- NODE_VERSION="6"
523523
524524
before_install:
525525
- rm -rf ~/.nvm/ && git clone --depth 1 https://github.com/creationix/nvm.git ~/.nvm
@@ -532,8 +532,8 @@ You can easily recreate the previous behavior of this matrix:
532532

533533
```yml
534534
node_js:
535-
- "0.10"
536-
- "0.11.14"
535+
- "4"
536+
- "6"
537537
```
538538

539539
#### 4) Publish when you want

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "node-pre-gyp",
33
"description": "Node.js native addon binary install tool",
4-
"version": "0.6.40",
4+
"version": "0.7.0",
55
"keywords": [
66
"native",
77
"addon",

0 commit comments

Comments
 (0)