Skip to content

Commit

Permalink
Merge pull request #59 from FAST-HEP/BK_prep-0.10.1
Browse files Browse the repository at this point in the history
Bk prep 0.10.1
  • Loading branch information
benkrikler authored Jun 22, 2021
2 parents c8ea12a + 42b7156 commit 475bbad
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
12 changes: 8 additions & 4 deletions fast_plotter/postproc/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion fast_plotter/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.10.0
current_version = 0.10.1
commit = True
tag = False

Expand Down

0 comments on commit 475bbad

Please sign in to comment.