Skip to content

Commit f624568

Browse files
committed
Publish latest features in master
1 parent 1e02c3b commit f624568

File tree

4 files changed

+25
-13
lines changed

4 files changed

+25
-13
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
### 2018-03-25
2+
3+
* Fix minor help page formatting errors.
4+
* Add Verbs/Commands to help page.
5+
* Add the ability to configure the TextWriter for help and version output
6+
so it is no longer writing only to `Console.Error`.
7+
* Allow each verb to inherit the `--help` trigger so that you can get detailed
8+
help information for verbs.
9+
110
### 2017-07-13 1.6.0.1
211

312
* Fix a bug in parsing consecutive Optional values.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ static void Main()
6262

6363
### Master
6464

65+
### 2018-03-25
66+
6567
* Fix minor help page formatting errors.
6668
* Add Verbs/Commands to help page.
6769
* Add the ability to configure the TextWriter for help and version output

clipr.nuspec

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>clipr</id>
5-
<version>1.6.0.1</version>
5+
<version>1.6.1.0</version>
66
<title>clipr Command Line Interface ParseR</title>
77
<authors>Dan Nemec</authors>
88
<owners>Dan Nemec</owners>
@@ -11,9 +11,10 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>Simple command line argument parser inspired by Python's argparse.</description>
1313
<releaseNotes>
14+
2018-03-25 1.6.1.0 Add help options for Verbs
1415
2017-07-13 1.6.0.1 Fix a bug in parsing consecutive Optional values.
15-
2016-01-02 1.6.0 Add optional constraints on NamedArguments where the value can be left off.
16-
2016-07-31 1.5.1 Support .Net Core, localization, and other fixes.
16+
2016-01-02 1.6.0.0 Add optional constraints on NamedArguments where the value can be left off.
17+
2016-07-31 1.5.1.0 Support .Net Core, localization, and other fixes.
1718
</releaseNotes>
1819
<copyright>Copyright 2017</copyright>
1920
<tags>command line parse parse arguments help usage argparse</tags>
@@ -26,21 +27,21 @@
2627
</dependencies>
2728
</metadata>
2829
<files>
29-
<file src="clipr\bin\Release\clipr.dll"
30+
<file src="src\clipr\bin\Release\clipr.dll"
3031
target="lib\net35\clipr.dll" />
31-
<file src="clipr\bin\Release\es\clipr.resources.dll"
32+
<file src="src\clipr\bin\Release\es\clipr.resources.dll"
3233
target="lib\net35\es\clipr.resources.dll" />
33-
<file src="clipr\bin\Release\de\clipr.resources.dll"
34+
<file src="src\clipr\bin\Release\de\clipr.resources.dll"
3435
target="lib\net35\de\clipr.resources.dll" />
35-
<file src="clipr\bin\Release\pt-PT\clipr.resources.dll"
36+
<file src="src\clipr\bin\Release\pt-PT\clipr.resources.dll"
3637
target="lib\net35\pt-PT\clipr.resources.dll" />
37-
<file src="clipr.NetCore\bin\Release\netstandard1.6\clipr.NetCore.dll"
38+
<file src="src\clipr.NetCore\bin\Release\netstandard1.6\clipr.NetCore.dll"
3839
target="lib\netstandard1.6\clipr.NetCore.dll" />
39-
<file src="clipr.NetCore\bin\Release\netstandard1.6\es\clipr.NetCore.resources.dll"
40+
<file src="src\clipr.NetCore\bin\Release\netstandard1.6\es\clipr.NetCore.resources.dll"
4041
target="lib\netstandard1.6\es\clipr.NetCore.resources.dll" />
41-
<file src="clipr.NetCore\bin\Release\netstandard1.6\de\clipr.NetCore.resources.dll"
42+
<file src="src\clipr.NetCore\bin\Release\netstandard1.6\de\clipr.NetCore.resources.dll"
4243
target="lib\netstandard1.6\de\clipr.NetCore.resources.dll" />
43-
<file src="clipr.NetCore\bin\Release\netstandard1.6\pt-PT\clipr.NetCore.resources.dll"
44+
<file src="src\clipr.NetCore\bin\Release\netstandard1.6\pt-PT\clipr.NetCore.resources.dll"
4445
target="lib\netstandard1.6\pt-PT\clipr.NetCore.resources.dll" />
4546
</files>
4647
</package>

src/clipr/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.6.0.0")]
36-
[assembly: AssemblyFileVersion("1.6.0.0")]
35+
[assembly: AssemblyVersion("1.6.1.0")]
36+
[assembly: AssemblyFileVersion("1.6.1.0")]

0 commit comments

Comments
 (0)