Skip to content

Commit 1be9519

Browse files
committed
Version 5.0.0-beta4
- [all] add regex stream parser and tests - [all] upgrade to non deprecated buffer methods - [docs] Add socketio example - [windows] Fix unhandled promise rejection when calling read on Windows
1 parent 5f53a45 commit 1be9519

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.docs/README.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you'd like to contribute please take a look at [contribution guide](CONTRIBUT
1919

2020
You're reading the README for the master branch of serialport. You probably want to be looking at the README of our latest release. See our [change log](changelog.md) for what's new and our [upgrade guide](UPGRADE_GUIDE.md) for a walk through on what to look out for between major versions.
2121

22-
- [`serialport@5.0.0-beta3` docs are here](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/5.0.0-beta3/README.md) this is the latest `5.x` releases.
22+
- [`serialport@5.0.0-beta4` docs are here](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/5.0.0-beta4/README.md) this is the latest `5.x` releases.
2323
- [`serialport@4.0.7` docs are here](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/4.0.7/README.md) it is the latest `4.x` releases.
2424
- [`serialport@3.1.2` docs are here](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/3.1.2/README.md) it was the last `3.x` releases.
2525
- [`serialport@2.1.2` docs are here](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/2.1.2/README.md) it was the last `2.x` release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ If you'd like to contribute please take a look at [contribution guide](CONTRIBUT
2828

2929
You're reading the README for the master branch of serialport. You probably want to be looking at the README of our latest release. See our [change log](changelog.md) for what's new and our [upgrade guide](UPGRADE_GUIDE.md) for a walk through on what to look out for between major versions.
3030

31-
- [`serialport@5.0.0-beta3` docs are here](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/5.0.0-beta3/README.md) this is the latest `5.x` releases.
31+
- [`serialport@5.0.0-beta4` docs are here](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/5.0.0-beta4/README.md) this is the latest `5.x` releases.
3232
- [`serialport@4.0.7` docs are here](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/4.0.7/README.md) it is the latest `4.x` releases.
3333
- [`serialport@3.1.2` docs are here](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/3.1.2/README.md) it was the last `3.x` releases.
3434
- [`serialport@2.1.2` docs are here](https://github.com/EmergingTechnologyAdvisors/node-serialport/blob/2.1.2/README.md) it was the last `2.x` release

changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Version 5.0.0-beta4
2+
-------------
3+
- [all] add regex stream parser and tests
4+
- [all] upgrade to non deprecated buffer methods
5+
- [docs] Add socketio example
6+
- [windows] Fix unhandled promise rejection when calling read on Windows
7+
18
Version 5.0.0-beta3
29
-------------
310
- [all] Streams rewrite, node serialport is now a node stream! 🎉

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": "5.0.0-beta3",
3+
"version": "5.0.0-beta4",
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/EmergingTechnologyAdvisors/node-serialport/releases/download/5.0.0-beta3"
13+
"host": "https://github.com/EmergingTechnologyAdvisors/node-serialport/releases/download/5.0.0-beta4"
1414
},
1515
"main": "./lib",
1616
"repository": {

0 commit comments

Comments
 (0)