1
0
mirror of https://github.com/mum4k/termdash.git synced 2025-04-25 13:48:50 +08:00

Updating CHANGELOG.

And fixing a lint error.
This commit is contained in:
Jakub Sobon 2019-02-22 00:04:08 -05:00
parent 3b2abce00b
commit 102e098dac
No known key found for this signature in database
GPG Key ID: F2451A77FB05D3B7
2 changed files with 4 additions and 2 deletions

View File

@ -48,6 +48,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
series are provided.
- Lint issues in the codebase, and updated Travis configuration so that golint
is executed on every run.
- Termdash now correctly starts in locales like zh_CN.UTF-8 where some of the
characters it uses internally can have ambiguous width.
## [0.6.1] - 12-Feb-2019

View File

@ -1,5 +1,5 @@
// runewidth is a wrapper over github.com/mattn/go-runewidth which gives
// different treatment to certain runes with ambiguous width.
// Package runewidth is a wrapper over github.com/mattn/go-runewidth which
// gives different treatment to certain runes with ambiguous width.
package runewidth
import runewidth "github.com/mattn/go-runewidth"