Skip to content

Commit

Permalink
Bump to version 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
reconbot committed Apr 11, 2016
1 parent b9304d5 commit a39d612
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 37 deletions.
49 changes: 16 additions & 33 deletions changelog.md
@@ -1,36 +1,19 @@
Version 2.0.7-beta5
-------------
- Fix binary paths to confirm with modern standards
- Confirm ns.js and electron compatibility
- Make the outpout of `.list` consistent between platforms and docs
- Define ambiguous flow control flags and document them
- Add support for bluetooth devices in `.list` /dev/rfcommXX

Version 2.0.7-beta4
-------------
- Fix pre-gyp paths so bindings can be found

Version 2.0.7-beta3
-------------
- Fix support systems who provide 0 as a valid file descriptor
- Integration tests on CI's that support it or for the folks at home with an arduino handy
- Many documentation improvements
- Listing serialports on unix/linux (non osx) now include more ports and have less bugs in the output
- Fix race conditions when opening and closing ports that led to errors while reading and writing while closing or opening the port.
- Fix a double open bug on OSX that would cause opening and closing ports repetitively to error.
- Fix a 100% cpu and possible hang bug when ports were disconnected on windows.
- Fix a memory leak on windows
- Upgraded to nan-2.2.1 for memory leak fixes and node 6 support (still not supported)

Version 2.0.7-beta2
-------------
- Code cleanup due to moving to eslint internally
- Bugfixes around JS handling of file descriptors

Version 2.0.7-beta1
-------------
- Remove deprecated BuildCommDCB for windows support
- Cleanup callback handling
Version 2.1.0
-------------
- 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!
- Fix binary paths to confirm with modern standards
- Integration tests on CI's that support it or for the folks at home with an arduino handy
- Upgrade to nan-2.2.1 for memory leak fixes and node 6 compatibility (still not supported)
- Confirm nw.js and electron compatibility
- Make the outpout of `.list` consistent between platforms and docs
- Define ambiguous flow control flags and document them
- Fix support systems who provide 0 as a valid file descriptor
- Fix race conditions when opening and closing ports that led to errors while reading and writing while closing or opening the port.
- [unix] Fix a double open bug on unix that would cause opening and closing ports repetitively to error.
- [unix] Listing serialports on linux now include more ports (including bluetooth devices eg. `/dev/rfcommXX`) and have less bugs in the output
- [windows] Remove deprecated BuildCommDCB for windows 10 support
- [windows] Fix a memory leak on windows
- [windows] Fix a 100% cpu and possible hang bug when ports were disconnected on windows.

Version 2.0.6
-------------
Expand Down
13 changes: 9 additions & 4 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "serialport",
"version": "2.0.7-beta5",
"description": "Welcome your robotic javascript overlords. Better yet, program them!",
"version": "2.1.0",
"description": "Node.js package to access serial ports. Welcome your robotic javascript overlords. Better yet, program them!",
"author": {
"name": "Chris Williams",
"email": "voodootikigod@gmail.com",
Expand All @@ -11,13 +11,17 @@
"module_name": "serialport",
"module_path": "build/{configuration}/",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://github.com/voodootikigod/node-serialport/releases/download/2.0.7-beta5"
"host": "https://github.com/voodootikigod/node-serialport/releases/download/2.1.0"
},
"main": "./serialport",
"repository": {
"type": "git",
"url": "git://github.com/voodootikigod/node-serialport.git"
},
"keywords": [
"serialport",
"nodebots"
],
"maintainers": [
{
"name": "Jacob Rosenthal",
Expand Down Expand Up @@ -87,5 +91,6 @@
"rebuild": "npm rebuild && node-pre-gyp rebuild",
"stress": "mocha --no-timeouts test/arduinoTest/stress.js",
"test": "grunt --verbose"
}
},
"gypfile": true
}

0 comments on commit a39d612

Please sign in to comment.