diff --git a/CHANGELOG.md b/CHANGELOG.md index 21a2d89d..bf12a9e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,15 @@ We are currently working on porting this changelog to the specifications in [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Version 0.15.8 - Unreleased -## Version 0.15.7 - Unreleased + +### Fixed + +* Hotfix - removed debug print statements + + +## Version 0.15.7 - Released 2021-09-02 ### Changed * Removed the distracting and very long internal traceback that occurred in diff --git a/xdoctest/__init__.py b/xdoctest/__init__.py index 75f34f2c..0246ef23 100644 --- a/xdoctest/__init__.py +++ b/xdoctest/__init__.py @@ -280,7 +280,7 @@ def fib(n): mkinit xdoctest --nomods ''' -__version__ = '0.15.7' +__version__ = '0.15.8' # Expose only select submodules diff --git a/xdoctest/plugin.py b/xdoctest/plugin.py index a9bc8118..5ddb5557 100644 --- a/xdoctest/plugin.py +++ b/xdoctest/plugin.py @@ -207,9 +207,7 @@ def __getattr__(self, attr): ns = NamespaceLike(self.config) from xdoctest import doctest_example - print('ns = {!r}'.format(ns.__dict__['config'].__dict__)) self._examp_conf = doctest_example.DoctestConfig()._populate_from_cli(ns) - print('self._examp_conf = {!r}'.format(self._examp_conf)) class XDoctestTextfile(_XDoctestBase):