Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
 - @serialport/[email protected]
 - @serialport/[email protected]
 - @serialport/[email protected]
 - @serialport/[email protected]
 - @serialport/[email protected]
 - @serialport/[email protected]
 - @serialport/[email protected]
 - @serialport/[email protected]
 - @serialport/[email protected]
 - @serialport/[email protected]
 - @serialport/[email protected]
 - @serialport/[email protected]
 - @serialport/[email protected]
 - [email protected]
 - @serialport/[email protected]
 - @serialport/[email protected]
  • Loading branch information
reconbot committed May 16, 2019
1 parent cd112ca commit 524a272
Show file tree
Hide file tree
Showing 32 changed files with 297 additions and 34 deletions.
16 changes: 16 additions & 0 deletions packages/binding-abstract/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.0.0](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2019-05-16)


### chore

* remove node6 support and upgrade codebase ([#1851](https://github.com/node-serialport/node-serialport/issues/1851)) ([d4f15c0](https://github.com/node-serialport/node-serialport/commit/d4f15c0))


### BREAKING CHANGES

* bindings now use async functions so they’ll never throw, only reject





## [2.0.5](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2019-04-27)

**Note:** Version bump only for package @serialport/binding-abstract
Expand Down
2 changes: 1 addition & 1 deletion packages/binding-abstract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@serialport/binding-abstract",
"version": "2.0.5",
"version": "3.0.0",
"main": "binding-abstract.js",
"keywords": [
"serialport-binding"
Expand Down
16 changes: 16 additions & 0 deletions packages/binding-mock/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.0.0](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2019-05-16)


### chore

* remove node6 support and upgrade codebase ([#1851](https://github.com/node-serialport/node-serialport/issues/1851)) ([d4f15c0](https://github.com/node-serialport/node-serialport/commit/d4f15c0))


### BREAKING CHANGES

* bindings now use async functions so they’ll never throw, only reject





## [2.0.5](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2019-04-27)

**Note:** Version bump only for package @serialport/binding-mock
Expand Down
4 changes: 2 additions & 2 deletions packages/binding-mock/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@serialport/binding-mock",
"version": "2.0.5",
"version": "3.0.0",
"main": "binding-mock.js",
"keywords": [
"serialport-binding"
],
"dependencies": {
"@serialport/binding-abstract": "^2.0.5",
"@serialport/binding-abstract": "^3.0.0",
"debug": "^4.1.1"
},
"engines": {
Expand Down
23 changes: 23 additions & 0 deletions packages/bindings/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,29 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.0.0](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2019-05-16)


### Bug Fixes

* remove PURGE_RXABORT flag on flush for Windows ([#1817](https://github.com/node-serialport/node-serialport/issues/1817)) ([1daa919](https://github.com/node-serialport/node-serialport/commit/1daa919))
* RTS/CTS flow control for Windows ([#1809](https://github.com/node-serialport/node-serialport/issues/1809)) ([cd112ca](https://github.com/node-serialport/node-serialport/commit/cd112ca))


### chore

* remove node6 support and upgrade codebase ([#1851](https://github.com/node-serialport/node-serialport/issues/1851)) ([d4f15c0](https://github.com/node-serialport/node-serialport/commit/d4f15c0))


### BREAKING CHANGES

* flush behavior on windows no longer cancels inflight reads
* bindings now use async functions so they’ll never throw, only reject





## [2.0.8](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2019-04-27)


Expand Down
8 changes: 4 additions & 4 deletions packages/bindings/package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "@serialport/bindings",
"version": "2.0.8",
"version": "3.0.0",
"main": "lib",
"keywords": [
"serialport-binding"
],
"dependencies": {
"@serialport/binding-abstract": "^2.0.5",
"@serialport/parser-readline": "^2.0.2",
"@serialport/binding-abstract": "^3.0.0",
"@serialport/parser-readline": "^3.0.0",
"bindings": "^1.5.0",
"debug": "^4.1.1",
"nan": "^2.13.2",
"prebuild-install": "^5.3.0"
},
"devDependencies": {
"@serialport/binding-mock": "^2.0.5"
"@serialport/binding-mock": "^3.0.0"
},
"engines": {
"node": ">=8.6.0"
Expand Down
16 changes: 16 additions & 0 deletions packages/list/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.0.0](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2019-05-16)


### chore

* remove node6 support and upgrade codebase ([#1851](https://github.com/node-serialport/node-serialport/issues/1851)) ([d4f15c0](https://github.com/node-serialport/node-serialport/commit/d4f15c0))


### BREAKING CHANGES

* bindings now use async functions so they’ll never throw, only reject





## [1.1.5](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2019-04-27)

**Note:** Version bump only for package @serialport/list
Expand Down
4 changes: 2 additions & 2 deletions packages/list/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@serialport/list",
"version": "1.1.5",
"version": "2.0.0",
"main": "lib/list.js",
"bin": {
"serialport-list": "./lib/list.js"
},
"dependencies": {
"@serialport/bindings": "^2.0.8",
"@serialport/bindings": "^3.0.0",
"commander": "^2.20.0"
},
"engines": {
Expand Down
16 changes: 16 additions & 0 deletions packages/parser-byte-length/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.0.0](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2019-05-16)


### chore

* remove node6 support and upgrade codebase ([#1851](https://github.com/node-serialport/node-serialport/issues/1851)) ([d4f15c0](https://github.com/node-serialport/node-serialport/commit/d4f15c0))


### BREAKING CHANGES

* bindings now use async functions so they’ll never throw, only reject





## [2.0.2](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2018-11-27)

**Note:** Version bump only for package @serialport/parser-byte-length
Expand Down
2 changes: 1 addition & 1 deletion packages/parser-byte-length/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@serialport/parser-byte-length",
"version": "2.0.2",
"version": "3.0.0",
"main": "byte-length.js",
"engines": {
"node": ">=8.6.0"
Expand Down
16 changes: 16 additions & 0 deletions packages/parser-cctalk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.0.0](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2019-05-16)


### chore

* remove node6 support and upgrade codebase ([#1851](https://github.com/node-serialport/node-serialport/issues/1851)) ([d4f15c0](https://github.com/node-serialport/node-serialport/commit/d4f15c0))


### BREAKING CHANGES

* bindings now use async functions so they’ll never throw, only reject





## [2.0.2](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2018-11-27)

**Note:** Version bump only for package @serialport/parser-cctalk
Expand Down
2 changes: 1 addition & 1 deletion packages/parser-cctalk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@serialport/parser-cctalk",
"version": "2.0.2",
"version": "3.0.0",
"main": "cctalk.js",
"engines": {
"node": ">=8.6.0"
Expand Down
16 changes: 16 additions & 0 deletions packages/parser-delimiter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.0.0](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2019-05-16)


### chore

* remove node6 support and upgrade codebase ([#1851](https://github.com/node-serialport/node-serialport/issues/1851)) ([d4f15c0](https://github.com/node-serialport/node-serialport/commit/d4f15c0))


### BREAKING CHANGES

* bindings now use async functions so they’ll never throw, only reject





## [2.0.2](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2018-11-27)

**Note:** Version bump only for package @serialport/parser-delimiter
Expand Down
2 changes: 1 addition & 1 deletion packages/parser-delimiter/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@serialport/parser-delimiter",
"main": "delimiter.js",
"version": "2.0.2",
"version": "3.0.0",
"engines": {
"node": ">=8.6.0"
},
Expand Down
16 changes: 16 additions & 0 deletions packages/parser-inter-byte-timeout/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.0.0](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2019-05-16)


### chore

* remove node6 support and upgrade codebase ([#1851](https://github.com/node-serialport/node-serialport/issues/1851)) ([d4f15c0](https://github.com/node-serialport/node-serialport/commit/d4f15c0))


### BREAKING CHANGES

* bindings now use async functions so they’ll never throw, only reject





# 1.1.0 (2019-01-24)


Expand Down
2 changes: 1 addition & 1 deletion packages/parser-inter-byte-timeout/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@serialport/parser-inter-byte-timeout",
"version": "1.1.0",
"version": "2.0.0",
"main": "inter-byte-timeout.js",
"engines": {
"node": ">=8.6.0"
Expand Down
16 changes: 16 additions & 0 deletions packages/parser-readline/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.0.0](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2019-05-16)


### chore

* remove node6 support and upgrade codebase ([#1851](https://github.com/node-serialport/node-serialport/issues/1851)) ([d4f15c0](https://github.com/node-serialport/node-serialport/commit/d4f15c0))


### BREAKING CHANGES

* bindings now use async functions so they’ll never throw, only reject





## [2.0.2](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2018-11-27)

**Note:** Version bump only for package @serialport/parser-readline
Expand Down
4 changes: 2 additions & 2 deletions packages/parser-readline/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@serialport/parser-readline",
"main": "readline.js",
"version": "2.0.2",
"version": "3.0.0",
"dependencies": {
"@serialport/parser-delimiter": "^2.0.2"
"@serialport/parser-delimiter": "^3.0.0"
},
"engines": {
"node": ">=8.6.0"
Expand Down
16 changes: 16 additions & 0 deletions packages/parser-ready/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.0.0](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2019-05-16)


### chore

* remove node6 support and upgrade codebase ([#1851](https://github.com/node-serialport/node-serialport/issues/1851)) ([d4f15c0](https://github.com/node-serialport/node-serialport/commit/d4f15c0))


### BREAKING CHANGES

* bindings now use async functions so they’ll never throw, only reject





## [2.0.2](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2018-11-27)

**Note:** Version bump only for package @serialport/parser-ready
Expand Down
2 changes: 1 addition & 1 deletion packages/parser-ready/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@serialport/parser-ready",
"main": "ready.js",
"version": "2.0.2",
"version": "3.0.0",
"engines": {
"node": ">=8.6.0"
},
Expand Down
16 changes: 16 additions & 0 deletions packages/parser-regex/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.0.0](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2019-05-16)


### chore

* remove node6 support and upgrade codebase ([#1851](https://github.com/node-serialport/node-serialport/issues/1851)) ([d4f15c0](https://github.com/node-serialport/node-serialport/commit/d4f15c0))


### BREAKING CHANGES

* bindings now use async functions so they’ll never throw, only reject





## [2.0.2](https://github.com/node-serialport/node-serialport/compare/@serialport/[email protected]...@serialport/[email protected]) (2018-11-27)

**Note:** Version bump only for package @serialport/parser-regex
Expand Down
2 changes: 1 addition & 1 deletion packages/parser-regex/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@serialport/parser-regex",
"main": "regex.js",
"version": "2.0.2",
"version": "3.0.0",
"engines": {
"node": ">=8.6.0"
},
Expand Down
Loading

0 comments on commit 524a272

Please sign in to comment.