From 706b6a856e006671394ef5ee5726348ab5d0b819 Mon Sep 17 00:00:00 2001 From: joncrall Date: Thu, 2 Sep 2021 16:59:24 -0400 Subject: [PATCH 1/2] start 0.15.8 branch --- CHANGELOG.md | 4 +++- xdoctest/__init__.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21a2d89d..24d68b88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,10 @@ 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 + +## 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 From 893b7f2cbf5f822748047aea22251431d72e4869 Mon Sep 17 00:00:00 2001 From: joncrall Date: Thu, 2 Sep 2021 17:28:50 -0400 Subject: [PATCH 2/2] hotfix previous release --- CHANGELOG.md | 5 +++++ xdoctest/plugin.py | 2 -- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24d68b88..bf12a9e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## Version 0.15.8 - Unreleased +### Fixed + +* Hotfix - removed debug print statements + + ## Version 0.15.7 - Released 2021-09-02 ### Changed 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):