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}
2
2
init :
3
3
- git config --global core.autocrlf input
4
4
clone_depth : 1
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## Unreleased
3
+ ## [ v2.2.0]
4
+
5
+ ** March 30,2018**
4
6
5
7
- Added support for command validators using ` CommandLineApplication.Validators ` and added a new OnValidate convention
6
8
- Fix minor bug in ArgumentEscaper where some strings were not properly escaped
7
9
- Update to System.ComponentModel.Annotations 4.4.1 (netstandard2.0 only)
10
+ - [ @atruskie ] : Ensure ValueParsers are inherited in subcommands
8
11
9
12
## [ v2.2.0-rc]
10
13
@@ -123,7 +126,8 @@ Other:
123
126
[ @rmcc13 ] : https://github.com/rmcc13
124
127
[ @sebastienros ] : https://github.com/sebastienros
125
128
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
127
131
[ v2.2.0-rc ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.0-beta...v2.2.0-rc
128
132
[ v2.2.0-beta ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.0-alpha...v2.2.0-beta
129
133
[ 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
29
29
```
30
30
``` xml
31
31
<ItemGroup >
32
- <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.1.1 " />
32
+ <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.2.0 " />
33
33
</ItemGroup >
34
34
```
35
35
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ $ dotnet add package McMaster.Extensions.CommandLineUtils
22
22
```
23
23
``` xml
24
24
<ItemGroup >
25
- <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.0.1 " />
25
+ <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.2.0 " />
26
26
</ItemGroup >
27
27
```
28
28
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
<Project >
2
2
<PropertyGroup >
3
3
<VersionPrefix >2.2.0</VersionPrefix >
4
- <VersionSuffix >rc </VersionSuffix >
4
+ <VersionSuffix >rtm </VersionSuffix >
5
5
<PackageVersion Condition =" '$(APPVEYOR_REPO_TAG)' == 'true' AND '$(VersionSuffix)' != ''" >$(VersionPrefix)-$(VersionSuffix)</PackageVersion >
6
6
<PackageVersion Condition =" '$(APPVEYOR_REPO_TAG)' == 'true' AND '$(VersionSuffix)' == 'rtm'" >$(VersionPrefix)</PackageVersion >
7
7
You can’t perform that action at this time.
0 commit comments