Projects STRLCPY termdash Commits f13e4222
🤬
  • Merge pull request #317 from mum4k/release-0-16-1

    Release Termdash v0.16.1.
    
    ### Changed
    
    - Change the Go versions the CI builds with up to 1.17.
    - Bump github.com/gdamore/tcell from 2.2.0 to 2.4.0.
    - Bump github.com/mattn/go-runewidth from 0.0.12 to 0.0.13.
    - Re-enabled coverage reporting.
    
    ### Note
    
    The pull request for this release contains some commits that belong to release v0.16.0 due to an incorrect merge into master at that release (a squash merge). None of these commits contain any effective changes.
  • Loading...
  • Jakub Sobon committed with GitHub 2 years ago
    f13e4222
  • ■ ■ ■ ■ ■ ■
    .travis.yml
    1 1  language: go
    2 2  go:
    3  - - 1.14.x
    4  - - 1.15.x
     3 + - 1.16.x
     4 + - 1.17.x
    5 5   - stable
    6 6  before_install:
     7 + - go get golang.org/x/tools/cmd/cover
    7 8   - go get github.com/mattn/goveralls
    8 9  script:
    9 10   - go get -t ./...
    skipped 1 lines
    11 12   # Temporarily set -mod=mod to allow modification of go.mod and go.sum.
    12 13   # This seems to be caused by a sum missing in the tcell dependency and
    13 14   # should be removed when no longer needed.
    14  - - go test -mod=mod ./...
     15 + - go test -v -covermode=count -coverprofile=coverage.out -mod=mod ./...
    15 16   - CGO_ENABLED=1 go test -mod=mod -race ./...
    16 17   - go vet ./...
    17 18   - diff -u <(echo -n) <(gofmt -d -s .)
    18 19   - diff -u <(echo -n) <(./internal/scripts/autogen_licences.sh .)
    19 20   - diff -u <(echo -n) <(golint ./...)
    20  - - $GOPATH/bin/goveralls -service=travis-pro
     21 + - $GOPATH/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN
    21 22  env:
    22 23   global:
    23 24   - CGO_ENABLED=0
    skipped 2 lines
  • ■ ■ ■ ■ ■
    CHANGELOG.md
    skipped 6 lines
    7 7   
    8 8  ## [Unreleased]
    9 9   
     10 +## [0.16.1] - 13-Jan-2022
     11 + 
     12 +### Changed
     13 + 
     14 +- Change the Go versions the CI builds with up to 1.17.
     15 +- Bump github.com/gdamore/tcell from 2.2.0 to 2.4.0.
     16 +- Bump github.com/mattn/go-runewidth from 0.0.12 to 0.0.13.
     17 + 
    10 18  ## [0.16.0] - 03-Apr-2021
    11 19   
    12 20  ### Added
    skipped 451 lines
    464 472  - The Gauge widget.
    465 473  - The Text widget.
    466 474   
    467  -[unreleased]: https://github.com/mum4k/termdash/compare/v0.16.0...devel
     475 +[unreleased]: https://github.com/mum4k/termdash/compare/v0.16.1...devel
     476 +[0.16.1]: https://github.com/mum4k/termdash/compare/v0.16.0...v0.16.1
    468 477  [0.16.0]: https://github.com/mum4k/termdash/compare/v0.15.0...v0.16.0
    469 478  [0.15.0]: https://github.com/mum4k/termdash/compare/v0.14.0...v0.15.0
    470 479  [0.14.0]: https://github.com/mum4k/termdash/compare/v0.13.0...v0.14.0
    skipped 19 lines
  • ■ ■ ■ ■ ■ ■
    go.mod
    skipped 2 lines
    3 3  go 1.14
    4 4   
    5 5  require (
    6  - github.com/gdamore/tcell/v2 v2.2.0
     6 + github.com/gdamore/tcell/v2 v2.4.0
    7 7   github.com/kylelemons/godebug v1.1.0
    8  - github.com/mattn/go-runewidth v0.0.12
     8 + github.com/mattn/go-runewidth v0.0.13
    9 9   github.com/nsf/termbox-go v0.0.0-20201107200903-9b52a5faed9e
    10 10   golang.org/x/text v0.3.4 // indirect
    11 11  )
    skipped 1 lines
  • ■ ■ ■ ■ ■ ■
    go.sum
    1 1  github.com/gdamore/encoding v1.0.0 h1:+7OoQ1Bc6eTm5niUzBa0Ctsh6JbMW6Ra+YNuAtDBdko=
    2 2  github.com/gdamore/encoding v1.0.0/go.mod h1:alR0ol34c49FCSBLjhosxzcPHQbf2trDkoo5dl+VrEg=
    3  -github.com/gdamore/tcell/v2 v2.2.0 h1:vSyEgKwraXPSOkvCk7IwOSyX+Pv3V2cV9CikJMXg4U4=
    4  -github.com/gdamore/tcell/v2 v2.2.0/go.mod h1:cTTuF84Dlj/RqmaCIV5p4w8uG1zWdk0SF6oBpwHp4fU=
     3 +github.com/gdamore/tcell/v2 v2.4.0 h1:W6dxJEmaxYvhICFoTY3WrLLEXsQ11SaFnKGVEXW57KM=
     4 +github.com/gdamore/tcell/v2 v2.4.0/go.mod h1:cTTuF84Dlj/RqmaCIV5p4w8uG1zWdk0SF6oBpwHp4fU=
    5 5  github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=
    6 6  github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
    7 7  github.com/lucasb-eyer/go-colorful v1.0.3 h1:QIbQXiugsb+q10B+MI+7DI1oQLdmnep86tWFlaaUAac=
    8 8  github.com/lucasb-eyer/go-colorful v1.0.3/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0=
    9 9  github.com/mattn/go-runewidth v0.0.10/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk=
    10 10  github.com/mattn/go-runewidth v0.0.10/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk=
    11  -github.com/mattn/go-runewidth v0.0.12 h1:Y41i/hVW3Pgwr8gV+J23B9YEY0zxjptBuCWEaxmAOow=
    12  -github.com/mattn/go-runewidth v0.0.12/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk=
     11 +github.com/mattn/go-runewidth v0.0.13 h1:lTGmDsbAYt5DmK6OnoV7EuIF1wEIFAcxld6ypU4OSgU=
     12 +github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
    13 13  github.com/nsf/termbox-go v0.0.0-20201107200903-9b52a5faed9e h1:T8/SzSWIDoWV9trslLNfUdJ5yHrIXXuODEy5M0vou4U=
    14 14  github.com/nsf/termbox-go v0.0.0-20201107200903-9b52a5faed9e/go.mod h1:IuKpRQcYE1Tfu+oAQqaLisqDeXgjyyltCfsaoYN18NQ=
    15  -github.com/rivo/uniseg v0.1.0 h1:+2KBaVoUmb9XzDsrx/Ct0W/EYOSFf/nWTauy++DprtY=
    16 15  github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
     16 +github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY=
     17 +github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
    17 18  golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 h1:nxC68pudNYkKU6jWhgrqdreuFiOQWj1Fs7T3VrH4Pjw=
    18 19  golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
    19 20  golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf h1:MZ2shdL+ZM/XzY3ZGOnh4Nlpnxz5GSOhOmtHo3iPU6M=
    skipped 6 lines
Please wait...
Page is in error, reload to recover