Skip to content

Commit e6502b5

Browse files
committed
Bump to Version 3.1.2-beta2
- Add back in the bundle dependency to support node 0.12 with npm3. - bug fix in listUnix where we weren't filtering out non block devices that are named like serial ports - Better unix error messages
1 parent 6796a1c commit e6502b5

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,6 @@ before_install:
7979
- echo $COMMIT_MESSAGE
8080
- if [[ $TRAVIS_BRANCH == `git describe --tags --always HEAD` ]]; then PUBLISH_BINARY=true; fi;
8181
- echo "Publishing native platform Binary Package? ->" $PUBLISH_BINARY
82-
# or if we put [publish binary] in the commit message
83-
- if test "${COMMIT_MESSAGE#*'[publish binary]'}" != "$COMMIT_MESSAGE"; then PUBLISH_BINARY=true; fi;
84-
- echo "Publishing native platform Binary Package? ->" $PUBLISH_BINARY
8582

8683
install:
8784
# ensure source install works

PUBLISHING.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ builds in Travis-CI and AppVeyor will generate the binaries for each platform an
88
We use [node-pre-gyp-github](https://github.com/bchr02/node-pre-gyp-github) on top of node-pre-gyp
99
to publish these binaries on Github.
1010

11-
This can be checked in the .travis.yml file and appveyor.yml file. Within these files, there are two
12-
methods for publishing new binaries for each version: one is if a `git tag` is detected; the other
13-
can be triggered by passing the string `[publish binary]` in the commit message itself.
11+
This can be checked in the .travis.yml file and appveyor.yml file. Within these files, if a git tag is detected a binary will be built and published for each version.
1412

1513
1. Merge all changes and new features into master.
1614
2. Fill out changelog.md.

appveyor.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ install:
5858
- cmd: ECHO %APPVEYOR_REPO_BRANCH%
5959
- cmd: DEL _git_tag.tmp
6060
- cmd: IF x%APPVEYOR_REPO_BRANCH%==x%GIT_TAG% SET PUBLISH_BINARY=true
61-
# Or look for commit message containing `[publish binary]`
62-
- cmd: IF not x%COMMIT_MSG:[publish binary]=%==x%COMMIT_MSG% SET PUBLISH_BINARY=true
6361
- cmd: ECHO %PUBLISH_BINARY%
6462

6563
# Set a serialport for us to play with

changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version 3.1.2-beta2
2+
-------------
3+
- Add back in the bundle dependency to support node 0.12 with npm3.
4+
- bug fix in listUnix where we weren't filtering out non block devices that are named like serial ports
5+
- Better unix error messages
6+
17
Version 3.1.2-beta1
28
-------------
39
- Better windows error messages for opening ports

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "serialport",
3-
"version": "3.1.2-beta1",
3+
"version": "3.1.2-beta2",
44
"description": "Node.js package to access serial ports. Welcome your robotic javascript overlords. Better yet, program them!",
55
"author": {
66
"name": "Chris Williams",
@@ -10,7 +10,7 @@
1010
"binary": {
1111
"module_name": "serialport",
1212
"module_path": "build/{configuration}/",
13-
"host": "https://github.com/voodootikigod/node-serialport/releases/download/3.1.2-beta1"
13+
"host": "https://github.com/voodootikigod/node-serialport/releases/download/3.1.2-beta2"
1414
},
1515
"main": "./lib/serialport",
1616
"repository": {

0 commit comments

Comments
 (0)