Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 2ee7d85

Browse files
authored
Bump uilive (#21)
We are seeing a bug that sounds similar to gosuri/uilive#9 See https://gustohq.slack.com/archives/CM6TG0J8K/p1643752755120559
1 parent 9591fc5 commit 2ee7d85

File tree

12 files changed

+158
-33
lines changed

12 files changed

+158
-33
lines changed

committer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"os"
88
)
99

10-
const VERSION = "0.1.9"
10+
const VERSION = "0.1.10"
1111

1212
func main() {
1313
version := flag.Bool("version", false, "Display version")

configure.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash -ex
22

3-
VERSION="0.1.9"
3+
VERSION="0.1.10"
44
GIT_PRE_COMMIT_HOOK=".git/hooks/pre-commit"
55
COMMITTER_YML="committer.yml"
66
COMMITTER_LOCATION="/usr/local/bin/committer"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/gusto/committer
33
go 1.17
44

55
require (
6-
github.com/gosuri/uilive v0.0.1
6+
github.com/gosuri/uilive v0.0.4
77
github.com/kyokomi/emoji v0.0.3-0.20170519011427-ddd4753eac3f
88
github.com/stretchr/testify v1.1.5-0.20170809224252-890a5c3458b4
99
gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github.com/davecgh/go-spew v1.1.1-0.20170829195320-a47672248388 h1:c9n+0y02ovmvU9O/gS/fqw6HRlUwG645A2AJckmQVy0=
22
github.com/davecgh/go-spew v1.1.1-0.20170829195320-a47672248388/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3-
github.com/gosuri/uilive v0.0.1 h1:zoIHF8lwKuZbNdJ38YtOJxY7tdskYNuQ2DoaxtneJ9A=
4-
github.com/gosuri/uilive v0.0.1/go.mod h1:qkLSc0A5EXSP6B04TrN4oQoxqFI7A8XvoXSlJi8cwk8=
3+
github.com/gosuri/uilive v0.0.4 h1:hUEBpQDj8D8jXgtCdBu7sWsy5sbW/5GhuO8KBwJ2jyY=
4+
github.com/gosuri/uilive v0.0.4/go.mod h1:V/epo5LjjlDE5RJUcqx8dbw+zc93y5Ya3yg8tfZ74VI=
55
github.com/kr/pretty v0.2.1 h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI=
66
github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
77
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=

vendor/github.com/gosuri/uilive/.travis.yml

Lines changed: 25 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/gosuri/uilive/Makefile

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/gosuri/uilive/terminal_size.go

Lines changed: 37 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/gosuri/uilive/terminal_size_windows.go

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/gosuri/uilive/writer.go

Lines changed: 44 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/gosuri/uilive/writer_posix.go

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)