Skip to content

Commit

Permalink
Prepare the final 2.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
natemcmaster committed Mar 31, 2018
1 parent 7447365 commit f082bc8
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.2.0-beta.{build}
version: 2.2.0.{build}
init:
- git config --global core.autocrlf input
clone_depth: 1
Expand Down
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# Changelog

## Unreleased
## [v2.2.0]

**March 30,2018**

- Added support for command validators using `CommandLineApplication.Validators` and added a new OnValidate convention
- Fix minor bug in ArgumentEscaper where some strings were not properly escaped
- Update to System.ComponentModel.Annotations 4.4.1 (netstandard2.0 only)
- [@atruskie]: Ensure ValueParsers are inherited in subcommands

## [v2.2.0-rc]

Expand Down Expand Up @@ -123,7 +126,8 @@ Other:
[@rmcc13]: https://github.com/rmcc13
[@sebastienros]: https://github.com/sebastienros

[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.0-rc...HEAD
[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.0...HEAD
[v2.2.0]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.0-rc...v2.2.0
[v2.2.0-rc]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.0-beta...v2.2.0-rc
[v2.2.0-beta]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.0-alpha...v2.2.0-beta
[v2.2.0-alpha]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.1.1...v2.2.0-alpha
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ $ dotnet add package McMaster.Extensions.CommandLineUtils
```
```xml
<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.1.1" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.0" />
</ItemGroup>
```

Expand Down
2 changes: 1 addition & 1 deletion docfx_project/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ $ dotnet add package McMaster.Extensions.CommandLineUtils
```
```xml
<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.0.1" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.0" />
</ItemGroup>
```

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion version.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<VersionPrefix>2.2.0</VersionPrefix>
<VersionSuffix>rc</VersionSuffix>
<VersionSuffix>rtm</VersionSuffix>
<PackageVersion Condition="'$(APPVEYOR_REPO_TAG)' == 'true' AND '$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</PackageVersion>
<PackageVersion Condition="'$(APPVEYOR_REPO_TAG)' == 'true' AND '$(VersionSuffix)' == 'rtm'">$(VersionPrefix)</PackageVersion>

Expand Down

0 comments on commit f082bc8

Please sign in to comment.