Skip to content

Commit

Permalink
Fixes typo in logging statement (v0.3.1 -> v0.3.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLonelyGhost committed Nov 7, 2019
1 parent 0a52b50 commit f7766a6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
We follow [Semantic Versioning](http://semver.org/) as a way of measuring stability of an update. This
means we will never make a backwards-incompatible change within a major version of the project.

## [0.3.2] - 2019-11-07

- Fixes typo in source code misspelling one of the properties we're trying to log the value of

## [0.3.1] - 2019-11-07

- Missing `--verbose` flag to crank up the logging
Expand Down
2 changes: 1 addition & 1 deletion oc_auth/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.3.1'
__version__ = '0.3.2'
2 changes: 1 addition & 1 deletion oc_auth/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def main():
logging.basicConfig(level=opts.log_level, format='%(levelname)s: %(message)s')
logging.debug('Given context: {}'.format(opts.context))
logging.debug('Given cluster: {}'.format(opts.cluster))
logging.debug('Given credential: {}'.format(opts.credential))
logging.debug('Given credential: {}'.format(opts.cred))
logging.debug('Given TLS verification: {}'.format('yes' if opts.verify else 'no'))

kube_config = KubeConfig.find_from_env()
Expand Down

0 comments on commit f7766a6

Please sign in to comment.