File tree Expand file tree Collapse file tree 9 files changed +31
-11
lines changed
Expand file tree Collapse file tree 9 files changed +31
-11
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ v2.2.5]
4+
5+ ** July 1, 2018**
6+
7+ Bug fixes:
8+ * [ @bording ] and [ @SeanFeldman ] : Unable to create new instance of ` CommandOption<T> ` for type that is already registered
9+
10+ Minor improvements:
11+ * Started code signing the NuGet package and binaries
12+ * [ @jerriep ] : added documentation for response file parsing
13+
314## [ v2.2.4]
415
516** May 24, 2018**
@@ -163,14 +174,19 @@ Other:
163174
164175
165176[ @atruskie ] : https://github.com/atruskie
177+ [ @bording ] : https://github.com/bording
166178[ @couven92 ] : https://github.com/couven92
167179[ @demosdemon ] : https://github.com/demosdemon
180+ [ @jerriep ] : https://github.com/jerriep
168181[ @kant2002 ] : https://github.com/kant2002
169182[ @liamdawson ] : https://github.com/liamdawson
170183[ @rmcc13 ] : https://github.com/rmcc13
184+ [ @SeanFeldman ] : https://github.com/SeanFeldman
171185[ @sebastienros ] : https://github.com/sebastienros
172186
173- [ Unreleased ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.3...HEAD
187+ [ Unreleased ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...HEAD
188+ [ v2.2.5 ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.4...v2.2.5
189+ [ v2.2.4 ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.3...v2.2.4
174190[ v2.2.3 ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.3...v2.2.3
175191[ v2.2.2 ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.1...v2.2.2
176192[ v2.2.1 ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.0...v2.2.1
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.2.4 " />
32+ <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.2.5 " />
3333</ItemGroup >
3434```
3535
Original file line number Diff line number Diff line change 66 </PropertyGroup >
77
88 <ItemGroup >
9- <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.2.4 " />
9+ <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.2.5 " />
1010 <PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 2.0.0" />
1111 </ItemGroup >
1212
Original file line number Diff line number Diff line change 77 </PropertyGroup >
88
99 <ItemGroup >
10- <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.2.4 " />
10+ <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.2.5 " />
1111 </ItemGroup >
1212
1313</Project >
Original file line number Diff line number Diff line change 66 </PropertyGroup >
77
88 <ItemGroup >
9- <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.2.4 " />
9+ <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.2.5 " />
1010 </ItemGroup >
1111
1212</Project >
Original file line number Diff line number Diff line change 66 </PropertyGroup >
77
88 <ItemGroup >
9- <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.2.4 " />
9+ <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.2.5 " />
1010 </ItemGroup >
1111
1212</Project >
Original file line number Diff line number Diff line change 2222
2323 ```xml
2424 <ItemGroup>
25- <PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.4 " />
25+ <PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.5 " />
2626 </ItemGroup>
2727 ```
2828
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.2.4 " />
25+ <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.2.5 " />
2626</ItemGroup >
2727```
2828
Original file line number Diff line number Diff line change 11<Project >
22 <PropertyGroup >
3- <PackageReleaseNotes Condition =" '$(VersionPrefix)' == '2.2.4 '" >
3+ <PackageReleaseNotes Condition =" '$(VersionPrefix)' == '2.2.5 '" >
44<![CDATA[
55Bug fixes:
66
7- * @liamdawson: support parsing `System.Uri`
8- * Fix #101 - Update `DotNetExe.FullPath` to honor the `DOTNET_ROOT` environment variable as a fallback
7+ * @bording and @SeanFeldman: Unable to create new instance of `CommandOption<T>` for type that is already registered
8+
9+ Minor improvements:
10+
11+ * Started code signing the NuGet package and binaries
12+ * [@jerriep]: added documentation for response file parsing
913
1014See more details here: https://github.com/natemcmaster/CommandLineUtils/blob/master/CHANGELOG.md#v$(VersionPrefix.Replace('.',''))
1115]]>
You can’t perform that action at this time.
0 commit comments