Skip to content

Commit

Permalink
Merge pull request #71 from pepkit/dev
Browse files Browse the repository at this point in the history
Release 0.9.2
  • Loading branch information
nsheff authored Nov 12, 2018
2 parents 623e451 + f91814e commit 32fbccd
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions doc/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
Changelog
******************************
- **v0.9.2** (*2018-11-12*):

- Fixed

- Fixed bugs with ``looper summarize`` when no summarizers were present

- Added CLI flag to force ``looper destroy`` for programmatic access

- Fixed a bug for samples with duplicate names

- Added new display features (graphs, table display) for HTML summary output.



- **v0.9.1** (*2018-06-30*):

- Fixed
Expand Down
2 changes: 1 addition & 1 deletion looper/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.9.1"
__version__ = "0.9.2"
2 changes: 1 addition & 1 deletion looper/looper.py
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ def __call__(self, args, remaining_args):
len(samples_by_reason), ", ".join(samples_by_reason.keys())))
full_fail_msgs = [create_failure_message(reason, samples)
for reason, samples in samples_by_reason.items()]
_LOGGER.info("\nSamples by failure:\n{}".
_LOGGER.info("\nSummary of failures:\n{}".
format("\n".join(full_fail_msgs)))

"""
Expand Down

0 comments on commit 32fbccd

Please sign in to comment.