Skip to content

Commit

Permalink
Updates to changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii committed Feb 12, 2017
1 parent f4d8fd0 commit 767ec29
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
9 changes: 5 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
## Version 0.3 (in progress)
## Version 0.3

* Added `->requires`, `->excludes`, and `->envname` from plumbum
* More tests for Help strings, improvements in formatting
* Added `->requires`, `->excludes`, and `->envname` from [Plumbum](http://plumbum.readthedocs.io/en/latest/)
* Supports `->mandatory` from Plubmum
* More tests for help strings, improvements in formatting
* Support type and set syntax in positionals help strings
* Added help groups, with `->group("name")` syntax
* Added initial support for ini file reading with `add_config` option.
* Supports GCC 4.7 again
* Clang 3.5 now required for tests due to googlemock usage, 3.4 should still work otherwise
* Changes `setup` for an explicit help bool in constructor/`add_subcommand`


## Version 0.2

* Moved to simpler syntax, where `Option` pointers are returned and operated on
Expand Down
4 changes: 1 addition & 3 deletions tests/HelpTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ TEST(THelp, EnvName) {
std::string help = app.help();

EXPECT_THAT(help, HasSubstr("SOME_ENV"));

}

TEST(THelp, Requires) {
Expand All @@ -92,7 +91,6 @@ TEST(THelp, Requires) {
std::string help = app.help();

EXPECT_THAT(help, HasSubstr("Requires: --op1"));

}

TEST(THelp, Excludes) {
Expand All @@ -104,5 +102,5 @@ TEST(THelp, Excludes) {
std::string help = app.help();

EXPECT_THAT(help, HasSubstr("Excludes: --op1"));

}

0 comments on commit 767ec29

Please sign in to comment.