File tree Expand file tree Collapse file tree 6 files changed +10
-6
lines changed
Expand file tree Collapse file tree 6 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1- version : 2.2.0-beta .{build}
1+ version : 2.2.0.{build}
22init :
33 - git config --global core.autocrlf input
44clone_depth : 1
Original file line number Diff line number Diff line change 11# Changelog
22
3- ## Unreleased
3+ ## [ v2.2.0]
4+
5+ ** March 30,2018**
46
57 - Added support for command validators using ` CommandLineApplication.Validators ` and added a new OnValidate convention
68 - Fix minor bug in ArgumentEscaper where some strings were not properly escaped
79 - Update to System.ComponentModel.Annotations 4.4.1 (netstandard2.0 only)
10+ - [ @atruskie ] : Ensure ValueParsers are inherited in subcommands
811
912## [ v2.2.0-rc]
1013
@@ -123,7 +126,8 @@ Other:
123126[ @rmcc13 ] : https://github.com/rmcc13
124127[ @sebastienros ] : https://github.com/sebastienros
125128
126- [ Unreleased ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.0-rc...HEAD
129+ [ Unreleased ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.0...HEAD
130+ [ v2.2.0 ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.0-rc...v2.2.0
127131[ v2.2.0-rc ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.0-beta...v2.2.0-rc
128132[ v2.2.0-beta ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.0-alpha...v2.2.0-beta
129133[ v2.2.0-alpha ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.1.1...v2.2.0-alpha
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ $ dotnet add package McMaster.Extensions.CommandLineUtils
2929```
3030``` xml
3131<ItemGroup >
32- <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.1.1 " />
32+ <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.2.0 " />
3333</ItemGroup >
3434```
3535
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ $ dotnet add package McMaster.Extensions.CommandLineUtils
2222```
2323``` xml
2424<ItemGroup >
25- <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.0.1 " />
25+ <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.2.0 " />
2626</ItemGroup >
2727```
2828
File renamed without changes.
Original file line number Diff line number Diff line change 11<Project >
22 <PropertyGroup >
33 <VersionPrefix >2.2.0</VersionPrefix >
4- <VersionSuffix >rc </VersionSuffix >
4+ <VersionSuffix >rtm </VersionSuffix >
55 <PackageVersion Condition =" '$(APPVEYOR_REPO_TAG)' == 'true' AND '$(VersionSuffix)' != ''" >$(VersionPrefix)-$(VersionSuffix)</PackageVersion >
66 <PackageVersion Condition =" '$(APPVEYOR_REPO_TAG)' == 'true' AND '$(VersionSuffix)' == 'rtm'" >$(VersionPrefix)</PackageVersion >
77
You can’t perform that action at this time.
0 commit comments