Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mattn/go-colorable
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.9
Choose a base ref
...
head repository: mattn/go-colorable
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.1.12
Choose a head ref
  • 11 commits
  • 9 files changed
  • 4 contributors

Commits on Sep 21, 2021

  1. Write plain text in chunks

    Instead of writing each byte alone to the console, always write the
    full plain text up to the next escape sequence or until the write
    is finished.
    Doing so means more copying around of bytes, but improves write
    performance significantly.
    secDre4mer committed Sep 21, 2021
    Configuration menu
    Copy the full SHA
    39a0e9a View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2021

  1. Add //go:build lines

    Starting with Go 1.17, //go:build lines are preferred over // +build
    lines, see https://golang.org/doc/go1.17#build-lines and
    https://golang.org/design/draft-gobuild for details.
    
    This change was generated by running Go 1.17 `go fmt ./...` which
    automatically adds //go:build lines based on the existing // +build
    lines.
    tklauser committed Sep 22, 2021
    Configuration menu
    Copy the full SHA
    4433af2 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2021

  1. Merge pull request #59 from tklauser/go-build-lines

    Add //go:build lines
    mattn authored Sep 25, 2021
    Configuration menu
    Copy the full SHA
    a53eda5 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #56 from secDre4mer/master

    Write plain text in chunks
    mattn authored Sep 25, 2021
    Configuration menu
    Copy the full SHA
    6a118b2 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2021

  1. Migrate to GitHub actions for CI testing

    Travis CI no longer seems to be working:
    https://app.travis-ci.com/github/mattn/go-colorable
    
    Add a GitHub action instead, based on the one from
    github.com/mattn/go-isatty
    tklauser committed Sep 29, 2021
    Configuration menu
    Copy the full SHA
    b004592 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #61 from tklauser/gh-actions

    Migrate to GitHub actions for CI testing
    mattn authored Sep 29, 2021
    Configuration menu
    Copy the full SHA
    797e0c2 View commit details
    Browse the repository at this point in the history
  3. Use correct field to specify Go version in GitHub action

    There is a typo in the actions/setup-go step which leads to the Go
    version not being picked up correctly. Fix it.
    tklauser committed Sep 29, 2021
    Configuration menu
    Copy the full SHA
    f2a4b66 View commit details
    Browse the repository at this point in the history
  4. Update dependencies

    mattn committed Sep 29, 2021
    Configuration menu
    Copy the full SHA
    77502a5 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #62 from tklauser/fix-go-version-gh-action

    Use correct field to specify Go version in GitHub action
    mattn authored Sep 29, 2021
    Configuration menu
    Copy the full SHA
    a1c5ae5 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2021

  1. delete buf

    buf(bytes.Buffer) is actually unused.
    naoyukis committed Nov 23, 2021
    Configuration menu
    Copy the full SHA
    699629e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #63 from naoyukis/delete_buf

    delete buf
    mattn authored Nov 23, 2021
    Configuration menu
    Copy the full SHA
    e1bb79c View commit details
    Browse the repository at this point in the history
Loading