Skip to content

Commit a7e7132

Browse files
authored
Merge pull request #31 from arduino/scerza/fix-quit-message-bug
Fix `quit` ok message not sent
2 parents c8ab038 + 2094254 commit a7e7132

File tree

8 files changed

+673
-29
lines changed

8 files changed

+673
-29
lines changed

.licenses/serial-discovery/go/github.com/arduino/pluggable-discovery-protocol-handler/v2.dep.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: github.com/arduino/pluggable-discovery-protocol-handler/v2
3-
version: v2.0.1
3+
version: v2.0.2
44
type: go
55
summary: Package discovery is a library for handling the Arduino Pluggable-Discovery
66
protocol (https://github.com/arduino/tooling-rfcs/blob/main/RFCs/0002-pluggable-discovery.md#pluggable-discovery-api-via-stdinstdout)

.licenses/serial-discovery/go/go.bug.st/serial.dep.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: go.bug.st/serial
3-
version: v1.3.1
3+
version: v1.3.2
44
type: go
55
summary: Package serial is a cross-platform serial library for the go language.
66
homepage: https://pkg.go.dev/go.bug.st/serial

.licenses/serial-discovery/go/go.bug.st/serial/enumerator.dep.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
name: go.bug.st/serial/enumerator
3-
version: v1.3.1
3+
version: v1.3.2
44
type: go
55
summary: Package enumerator is a golang cross-platform library for USB serial port
66
discovery.
77
homepage: https://pkg.go.dev/go.bug.st/serial/enumerator
88
license: bsd-3-clause
99
licenses:
10-
- sources: serial@v1.3.1/LICENSE
10+
- sources: serial@v1.3.2/LICENSE
1111
text: |2+
1212
1313
Copyright (c) 2014-2021, Cristian Maglie.
@@ -42,7 +42,7 @@ licenses:
4242
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
4343
POSSIBILITY OF SUCH DAMAGE.
4444
45-
- sources: serial@v1.3.1/README.md
45+
- sources: serial@v1.3.2/README.md
4646
text: |-
4747
The software is release under a [BSD 3-clause license]
4848

.licenses/serial-discovery/go/go.bug.st/serial/unixutils.dep.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
name: go.bug.st/serial/unixutils
3-
version: v1.3.1
3+
version: v1.3.2
44
type: go
55
summary:
66
homepage: https://pkg.go.dev/go.bug.st/serial/unixutils
77
license: bsd-3-clause
88
licenses:
9-
- sources: serial@v1.3.1/LICENSE
9+
- sources: serial@v1.3.2/LICENSE
1010
text: |2+
1111
1212
Copyright (c) 2014-2021, Cristian Maglie.
@@ -41,7 +41,7 @@ licenses:
4141
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
4242
POSSIBILITY OF SUCH DAMAGE.
4343
44-
- sources: serial@v1.3.1/README.md
44+
- sources: serial@v1.3.2/README.md
4545
text: |-
4646
The software is release under a [BSD 3-clause license]
4747

.licenses/serial-discovery/go/golang.org/x/sys/internal/unsafeheader.dep.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
name: golang.org/x/sys/internal/unsafeheader
3-
version: v0.0.0-20210806184541-e5e7981a1069
3+
version: v0.0.0-20210823070655-63515b42dcdf
44
type: go
55
summary: Package unsafeheader contains header declarations for the Go runtime's slice
66
and string implementations.
77
homepage: https://pkg.go.dev/golang.org/x/sys/internal/unsafeheader
88
license: bsd-3-clause
99
licenses:
10-
- sources: sys@v0.0.0-20210806184541-e5e7981a1069/LICENSE
10+
- sources: sys@v0.0.0-20210823070655-63515b42dcdf/LICENSE
1111
text: |
1212
Copyright (c) 2009 The Go Authors. All rights reserved.
1313
@@ -36,7 +36,7 @@ licenses:
3636
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3737
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3838
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39-
- sources: sys@v0.0.0-20210806184541-e5e7981a1069/PATENTS
39+
- sources: sys@v0.0.0-20210823070655-63515b42dcdf/PATENTS
4040
text: |
4141
Additional IP Rights Grant (Patents)
4242

.licenses/serial-discovery/go/golang.org/x/sys/unix.dep.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
name: golang.org/x/sys/unix
3-
version: v0.0.0-20210806184541-e5e7981a1069
3+
version: v0.0.0-20210823070655-63515b42dcdf
44
type: go
55
summary: Package unix contains an interface to the low-level operating system primitives.
66
homepage: https://pkg.go.dev/golang.org/x/sys/unix
77
license: bsd-3-clause
88
licenses:
9-
- sources: sys@v0.0.0-20210806184541-e5e7981a1069/LICENSE
9+
- sources: sys@v0.0.0-20210823070655-63515b42dcdf/LICENSE
1010
text: |
1111
Copyright (c) 2009 The Go Authors. All rights reserved.
1212
@@ -35,7 +35,7 @@ licenses:
3535
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3636
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3737
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38-
- sources: sys@v0.0.0-20210806184541-e5e7981a1069/PATENTS
38+
- sources: sys@v0.0.0-20210823070655-63515b42dcdf/PATENTS
3939
text: |
4040
Additional IP Rights Grant (Patents)
4141

go.mod

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
module github.com/arduino/serial-discovery
22

33
require (
4-
github.com/arduino/go-paths-helper v1.6.1 // indirect
54
github.com/arduino/go-properties-orderedmap v1.6.0
6-
github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.0.1
7-
github.com/davecgh/go-spew v1.1.1 // indirect
5+
github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.0.2
86
github.com/s-urbaniak/uevent v1.0.1
9-
go.bug.st/serial v1.3.1
10-
golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069
7+
go.bug.st/serial v1.3.2
8+
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf
119
)
1210

1311
go 1.16

go.sum

+656-10
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)