Skip to content

Commit a39d612

Browse files
committed
Bump to version 2.1.0
1 parent b9304d5 commit a39d612

File tree

2 files changed

+25
-37
lines changed

2 files changed

+25
-37
lines changed

changelog.md

Lines changed: 16 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,19 @@
1-
Version 2.0.7-beta5
2-
-------------
3-
- Fix binary paths to confirm with modern standards
4-
- Confirm ns.js and electron compatibility
5-
- Make the outpout of `.list` consistent between platforms and docs
6-
- Define ambiguous flow control flags and document them
7-
- Add support for bluetooth devices in `.list` /dev/rfcommXX
8-
9-
Version 2.0.7-beta4
10-
-------------
11-
- Fix pre-gyp paths so bindings can be found
12-
13-
Version 2.0.7-beta3
14-
-------------
15-
- Fix support systems who provide 0 as a valid file descriptor
16-
- Integration tests on CI's that support it or for the folks at home with an arduino handy
17-
- Many documentation improvements
18-
- Listing serialports on unix/linux (non osx) now include more ports and have less bugs in the output
19-
- Fix race conditions when opening and closing ports that led to errors while reading and writing while closing or opening the port.
20-
- Fix a double open bug on OSX that would cause opening and closing ports repetitively to error.
21-
- Fix a 100% cpu and possible hang bug when ports were disconnected on windows.
22-
- Fix a memory leak on windows
23-
- Upgraded to nan-2.2.1 for memory leak fixes and node 6 support (still not supported)
24-
25-
Version 2.0.7-beta2
26-
-------------
27-
- Code cleanup due to moving to eslint internally
28-
- Bugfixes around JS handling of file descriptors
29-
30-
Version 2.0.7-beta1
31-
-------------
32-
- Remove deprecated BuildCommDCB for windows support
33-
- Cleanup callback handling
1+
Version 2.1.0
2+
-------------
3+
- Major refactor, bug fixes and docs improvements thanks to @ecksun, @fivdi, @gfcittolin, @jacobrosenthal, @mhart, @nebrius, @pabigot, @paulkaplan, @reconbot, @rodovich, @rwaldron, @sayanee, @tigoe and everyone who reported and helped debug issues!
4+
- Fix binary paths to confirm with modern standards
5+
- Integration tests on CI's that support it or for the folks at home with an arduino handy
6+
- Upgrade to nan-2.2.1 for memory leak fixes and node 6 compatibility (still not supported)
7+
- Confirm nw.js and electron compatibility
8+
- Make the outpout of `.list` consistent between platforms and docs
9+
- Define ambiguous flow control flags and document them
10+
- Fix support systems who provide 0 as a valid file descriptor
11+
- Fix race conditions when opening and closing ports that led to errors while reading and writing while closing or opening the port.
12+
- [unix] Fix a double open bug on unix that would cause opening and closing ports repetitively to error.
13+
- [unix] Listing serialports on linux now include more ports (including bluetooth devices eg. `/dev/rfcommXX`) and have less bugs in the output
14+
- [windows] Remove deprecated BuildCommDCB for windows 10 support
15+
- [windows] Fix a memory leak on windows
16+
- [windows] Fix a 100% cpu and possible hang bug when ports were disconnected on windows.
3417

3518
Version 2.0.6
3619
-------------

package.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "serialport",
3-
"version": "2.0.7-beta5",
4-
"description": "Welcome your robotic javascript overlords. Better yet, program them!",
3+
"version": "2.1.0",
4+
"description": "Node.js package to access serial ports. Welcome your robotic javascript overlords. Better yet, program them!",
55
"author": {
66
"name": "Chris Williams",
77
"email": "[email protected]",
@@ -11,13 +11,17 @@
1111
"module_name": "serialport",
1212
"module_path": "build/{configuration}/",
1313
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
14-
"host": "https://github.com/voodootikigod/node-serialport/releases/download/2.0.7-beta5"
14+
"host": "https://github.com/voodootikigod/node-serialport/releases/download/2.1.0"
1515
},
1616
"main": "./serialport",
1717
"repository": {
1818
"type": "git",
1919
"url": "git://github.com/voodootikigod/node-serialport.git"
2020
},
21+
"keywords": [
22+
"serialport",
23+
"nodebots"
24+
],
2125
"maintainers": [
2226
{
2327
"name": "Jacob Rosenthal",
@@ -87,5 +91,6 @@
8791
"rebuild": "npm rebuild && node-pre-gyp rebuild",
8892
"stress": "mocha --no-timeouts test/arduinoTest/stress.js",
8993
"test": "grunt --verbose"
90-
}
94+
},
95+
"gypfile": true
9196
}

0 commit comments

Comments
 (0)