Skip to content

Commit f082bc8

Browse files
committed
Prepare the final 2.2.0 release
1 parent 7447365 commit f082bc8

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.2.0-beta.{build}
1+
version: 2.2.0.{build}
22
init:
33
- git config --global core.autocrlf input
44
clone_depth: 1

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

docfx_project/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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

0 commit comments

Comments
 (0)