From 851ddcf925d14db2955b8adc8c4e09850e93c078 Mon Sep 17 00:00:00 2001 From: carlio Date: Sat, 10 Jan 2015 08:03:05 +0100 Subject: [PATCH] Bumping version and updating changelog for fix for #96 and #97 --- CHANGELOG.md | 3 +++ prospector/__pkginfo__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08538a86..ee6b3341 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ Prospector Changelog ======= +## Version 0.8.3 +* [#96](https://github.com/landscapeio/prospector/issues/96) and [#97](https://github.com/landscapeio/prospector/issues/97) - disabling messages in profiles now works for pep8 + ## Version 0.8.2 * Version loading in setup.py no longer imports the prospector module (which could lead to various weirdnesses when installing on different platforms) * [#82](https://github.com/landscapeio/prospector/issues/82) resolves regression in adapter library detection raising, ``ValueError: too many values to unpack``. provided by [@jquast](https://github.com/jquast) diff --git a/prospector/__pkginfo__.py b/prospector/__pkginfo__.py index 045a92b5..cf3526c3 100644 --- a/prospector/__pkginfo__.py +++ b/prospector/__pkginfo__.py @@ -1,2 +1,2 @@ -__version_info__ = (0, 8, 2) +__version_info__ = (0, 8, 3) __version__ = '.'.join(map(str, __version_info__))