From 1513847ae30ab826e5ecaa1817015ed29f002b9c Mon Sep 17 00:00:00 2001 From: Trevor Slocum Date: Fri, 4 Dec 2020 11:42:16 -0800 Subject: [PATCH] Release v1.5.2 --- CHANGELOG | 4 ++-- go.mod | 2 +- go.sum | 4 ++-- grid.go | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index ceb82e0..971ed55 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,5 @@ -v1.5.2 (WIP) -- Handle events before executing queued updates +v1.5.2 (2020-12-04) +- Handle input events before executing queued update functions - Fix WindowManager background not being drawn v1.5.1 (2020-11-05) diff --git a/go.mod b/go.mod index 4130dd2..e860ce1 100644 --- a/go.mod +++ b/go.mod @@ -8,6 +8,6 @@ require ( github.com/mattn/go-runewidth v0.0.9 github.com/rivo/uniseg v0.2.0 gitlab.com/tslocum/cbind v0.1.4 - golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 // indirect + golang.org/x/sys v0.0.0-20201202213521-69691e467435 // indirect golang.org/x/text v0.3.4 // indirect ) diff --git a/go.sum b/go.sum index f6bb648..b9445ce 100644 --- a/go.sum +++ b/go.sum @@ -14,8 +14,8 @@ gitlab.com/tslocum/cbind v0.1.4 h1:cbZXPPcieXspk8cShoT6efz7HAT8yMNQcofYWNizis4= gitlab.com/tslocum/cbind v0.1.4/go.mod h1:RvwYE3auSjBNlCmWeGspzn+jdLUVQ8C2QGC+0nP9ChI= golang.org/x/sys v0.0.0-20190626150813-e07cf5db2756/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201013132646-2da7054afaeb/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 h1:nxC68pudNYkKU6jWhgrqdreuFiOQWj1Fs7T3VrH4Pjw= -golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201202213521-69691e467435 h1:25AvDqqB9PrNqj1FLf2/70I4W0L19qqoaFq3gjNwbKk= +golang.org/x/sys v0.0.0-20201202213521-69691e467435/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3 h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= diff --git a/grid.go b/grid.go index 7957a30..7c20823 100644 --- a/grid.go +++ b/grid.go @@ -94,7 +94,7 @@ func NewGrid() *Grid { // following call will result in columns with widths of 30, 10, 15, 15, and 30 // cells: // -// grid.Setcolumns(30, 10, -1, -1, -2) +// grid.SetColumns(30, 10, -1, -1, -2) // // If a primitive were then placed in the 6th and 7th column, the resulting // widths would be: 30, 10, 10, 10, 20, 10, and 10 cells.