Skip to content

Commit

Permalink
Fix quit ok message not sent
Browse files Browse the repository at this point in the history
  • Loading branch information
silvanocerza committed Nov 26, 2021
1 parent c8ab038 commit 2094254
Show file tree
Hide file tree
Showing 8 changed files with 673 additions and 29 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: github.com/arduino/pluggable-discovery-protocol-handler/v2
version: v2.0.1
version: v2.0.2
type: go
summary: Package discovery is a library for handling the Arduino Pluggable-Discovery
protocol (https://github.com/arduino/tooling-rfcs/blob/main/RFCs/0002-pluggable-discovery.md#pluggable-discovery-api-via-stdinstdout)
Expand Down
2 changes: 1 addition & 1 deletion .licenses/serial-discovery/go/go.bug.st/serial.dep.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: go.bug.st/serial
version: v1.3.1
version: v1.3.2
type: go
summary: Package serial is a cross-platform serial library for the go language.
homepage: https://pkg.go.dev/go.bug.st/serial
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
name: go.bug.st/serial/enumerator
version: v1.3.1
version: v1.3.2
type: go
summary: Package enumerator is a golang cross-platform library for USB serial port
discovery.
homepage: https://pkg.go.dev/go.bug.st/serial/enumerator
license: bsd-3-clause
licenses:
- sources: serial@v1.3.1/LICENSE
- sources: serial@v1.3.2/LICENSE
text: |2+
Copyright (c) 2014-2021, Cristian Maglie.
Expand Down Expand Up @@ -42,7 +42,7 @@ licenses:
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
- sources: serial@v1.3.1/README.md
- sources: serial@v1.3.2/README.md
text: |-
The software is release under a [BSD 3-clause license]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
name: go.bug.st/serial/unixutils
version: v1.3.1
version: v1.3.2
type: go
summary:
homepage: https://pkg.go.dev/go.bug.st/serial/unixutils
license: bsd-3-clause
licenses:
- sources: serial@v1.3.1/LICENSE
- sources: serial@v1.3.2/LICENSE
text: |2+
Copyright (c) 2014-2021, Cristian Maglie.
Expand Down Expand Up @@ -41,7 +41,7 @@ licenses:
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
- sources: serial@v1.3.1/README.md
- sources: serial@v1.3.2/README.md
text: |-
The software is release under a [BSD 3-clause license]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
name: golang.org/x/sys/internal/unsafeheader
version: v0.0.0-20210806184541-e5e7981a1069
version: v0.0.0-20210823070655-63515b42dcdf
type: go
summary: Package unsafeheader contains header declarations for the Go runtime's slice
and string implementations.
homepage: https://pkg.go.dev/golang.org/x/sys/internal/unsafeheader
license: bsd-3-clause
licenses:
- sources: sys@v0.0.0-20210806184541-e5e7981a1069/LICENSE
- sources: sys@v0.0.0-20210823070655-63515b42dcdf/LICENSE
text: |
Copyright (c) 2009 The Go Authors. All rights reserved.
Expand Down Expand Up @@ -36,7 +36,7 @@ licenses:
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- sources: sys@v0.0.0-20210806184541-e5e7981a1069/PATENTS
- sources: sys@v0.0.0-20210823070655-63515b42dcdf/PATENTS
text: |
Additional IP Rights Grant (Patents)
Expand Down
6 changes: 3 additions & 3 deletions .licenses/serial-discovery/go/golang.org/x/sys/unix.dep.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
name: golang.org/x/sys/unix
version: v0.0.0-20210806184541-e5e7981a1069
version: v0.0.0-20210823070655-63515b42dcdf
type: go
summary: Package unix contains an interface to the low-level operating system primitives.
homepage: https://pkg.go.dev/golang.org/x/sys/unix
license: bsd-3-clause
licenses:
- sources: sys@v0.0.0-20210806184541-e5e7981a1069/LICENSE
- sources: sys@v0.0.0-20210823070655-63515b42dcdf/LICENSE
text: |
Copyright (c) 2009 The Go Authors. All rights reserved.
Expand Down Expand Up @@ -35,7 +35,7 @@ licenses:
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- sources: sys@v0.0.0-20210806184541-e5e7981a1069/PATENTS
- sources: sys@v0.0.0-20210823070655-63515b42dcdf/PATENTS
text: |
Additional IP Rights Grant (Patents)
Expand Down
8 changes: 3 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
module github.com/arduino/serial-discovery

require (
github.com/arduino/go-paths-helper v1.6.1 // indirect
github.com/arduino/go-properties-orderedmap v1.6.0
github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.0.1
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.0.2
github.com/s-urbaniak/uevent v1.0.1
go.bug.st/serial v1.3.1
golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069
go.bug.st/serial v1.3.2
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf
)

go 1.16
666 changes: 656 additions & 10 deletions go.sum

Large diffs are not rendered by default.

0 comments on commit 2094254

Please sign in to comment.