diff --git a/CHANGELOG.md b/CHANGELOG.md index 19003d8..a84f14e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.1] - 2021-06-22 +### Fixed +- Postproc: Built-in command-line help, PR #59 + ## [0.10.0] - 2021-06-22 ### Added - Postproc: Option to control sorting during merging, PR #57 [@snwebb](https://github.com/snwebb) -- Postproc: Built-in command-line help for available stages +- Postproc: Built-in command-line help for available stages, PR #54 ### Fixed - Postproc: Make specification for value columns more rigorous, PR #55 [@DBAnthony](https://github.com/DBAnthony) diff --git a/fast_plotter/postproc/__main__.py b/fast_plotter/postproc/__main__.py index 3734714..3847a42 100644 --- a/fast_plotter/postproc/__main__.py +++ b/fast_plotter/postproc/__main__.py @@ -23,11 +23,15 @@ def make_parser(): parser.add_argument("-V", "--value-cols", default=r"(.*sumw2?|/^n$/)", help="A regular expression to control which columns are" " identified as values and not bin labels") - parser.add_argument("--help-stages", metavar="stage-name-regex", nargs="?", default=None, full_output=False, - action=argparse_help_stages(stages.known_stages, "fast_plotter.postproc.stages"), + parser.add_argument("--help-stages", metavar="stage-name-regex", nargs="?", default=None, + action=argparse_help_stages(stages.known_stages, + "fast_plotter.postproc.stages", + full_output=False), help="Print help specific to the available stages") - parser.add_argument("--help-stages-full", metavar="stage", full_output=True, - action=argparse_help_stages(stages.known_stages, "fast_plotter.postproc.stages"), + parser.add_argument("--help-stages-full", metavar="stage", + action=argparse_help_stages(stages.known_stages, + "fast_plotter.postproc.stages", + full_output=True), help="Print the full help specific to the available stages") parser.add_argument("files", nargs="+", help="Input dataframes that need merging together") diff --git a/fast_plotter/version.py b/fast_plotter/version.py index 2e53792..7384600 100644 --- a/fast_plotter/version.py +++ b/fast_plotter/version.py @@ -12,5 +12,5 @@ def split_version(version): return tuple(result) -__version__ = '0.10.0' +__version__ = '0.10.1' version_info = split_version(__version__) # noqa diff --git a/setup.cfg b/setup.cfg index a472d2e..c275160 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0 +current_version = 0.10.1 commit = True tag = False