diff --git a/.hues.yml b/.hues.yml index 062e892..3e1659a 100644 --- a/.hues.yml +++ b/.hues.yml @@ -1,9 +1,9 @@ labels: info: INFO - warn: WARN - error: ERR - success: S + warn: WARNING + error: ERROR + success: SUCCESS hues: time: blue options: - theme: powerline + theme: simple diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fa5ff4..be65229 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] ### Fixed - Fixed old reference name in a test, which was causing builds to fail. +- Many many readme fixes. +- Test coverage setup. ## [0.2.2] - 2016-10-02 ### Fixed diff --git a/README.md b/README.md index 0e9f9cf..e3b60ce 100644 --- a/README.md +++ b/README.md @@ -18,14 +18,21 @@ Go, grab the latest version from PIP. Run: pip install hues ``` -Then, in your scripts, do this: +Then, in your scripts, you can do this: ```python >>> import hues ->>> hues.log('42') ->>> hues.info('42') +>>> hues.log('Mission', 42) +>>> hues.info('Finding', 42) +>>> hues.error(41, 'is not', 42) +>>> hues.warn('We are distracted...') +>>> hues.info('Found', 24) +>>> hues.success('Close enough.') ``` +![Example](docs/example-simple.jpg) + + _whoa!_ ### Configuration diff --git a/docs/example-simple.jpg b/docs/example-simple.jpg new file mode 100644 index 0000000..adaa00b Binary files /dev/null and b/docs/example-simple.jpg differ