Skip to content

Commit

Permalink
Finalize release 2.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
natemcmaster authored Jul 2, 2018
1 parent 67193ea commit b4ae98e
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 11 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [v2.2.5]

**July 1, 2018**

Bug fixes:
* [@bording] and [@SeanFeldman]: Unable to create new instance of `CommandOption<T>` for type that is already registered

Minor improvements:
* Started code signing the NuGet package and binaries
* [@jerriep]: added documentation for response file parsing

## [v2.2.4]

**May 24, 2018**
Expand Down Expand Up @@ -163,14 +174,19 @@ Other:


[@atruskie]: https://github.com/atruskie
[@bording]: https://github.com/bording
[@couven92]: https://github.com/couven92
[@demosdemon]: https://github.com/demosdemon
[@jerriep]: https://github.com/jerriep
[@kant2002]: https://github.com/kant2002
[@liamdawson]: https://github.com/liamdawson
[@rmcc13]: https://github.com/rmcc13
[@SeanFeldman]: https://github.com/SeanFeldman
[@sebastienros]: https://github.com/sebastienros

[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.3...HEAD
[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...HEAD
[v2.2.5]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.4...v2.2.5
[v2.2.4]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.3...v2.2.4
[v2.2.3]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.3...v2.2.3
[v2.2.2]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.1...v2.2.2
[v2.2.1]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.0...v2.2.1
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.2.4" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.5" />
</ItemGroup>
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.4" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.5" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.0.0" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.4" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.5" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.4" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.5" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.4" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.5" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion docs/docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

```xml
<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.4" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.5" />
</ItemGroup>
```

Expand Down
2 changes: 1 addition & 1 deletion docs/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.2.4" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.5" />
</ItemGroup>
```

Expand Down
10 changes: 7 additions & 3 deletions releasenotes.props
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
<Project>
<PropertyGroup>
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.2.4'">
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.2.5'">
<![CDATA[
Bug fixes:
* @liamdawson: support parsing `System.Uri`
* Fix #101 - Update `DotNetExe.FullPath` to honor the `DOTNET_ROOT` environment variable as a fallback
* @bording and @SeanFeldman: Unable to create new instance of `CommandOption<T>` for type that is already registered
Minor improvements:
* Started code signing the NuGet package and binaries
* [@jerriep]: added documentation for response file parsing
See more details here: https://github.com/natemcmaster/CommandLineUtils/blob/master/CHANGELOG.md#v$(VersionPrefix.Replace('.',''))
]]>
Expand Down

0 comments on commit b4ae98e

Please sign in to comment.