File tree Expand file tree Collapse file tree 6 files changed +19
-37
lines changed
Expand file tree Collapse file tree 6 files changed +19
-37
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# Changelog
22
3+ [ See unreleased changes] [ unreleased ] .
4+
5+ ## [ v2.3.4]
6+
7+ Bugs fixed:
8+
9+ * Fix [ #218 ] : Handle options with multiple characters in the short option name when only specified in a subcommand
10+ * PR [ #224 ] by [ @SteveBenz ] : Rearrange the order that commands are listed in the USAGE block and list all the commands on the line
11+
12+ [ #218 ] : https://github.com/natemcmaster/CommandLineUtils/issues/218
13+ [ #224 ] : https://github.com/natemcmaster/CommandLineUtils/pull/224
14+
315## [ v2.3.3]
416
517Enhancements:
@@ -10,7 +22,7 @@ Enhancements:
1022## [ v2.3.2]
1123
1224Enhancements:
13- * Fix [ #211 ] by [ @rlvandaveer ] - honor attributes on classes which implement ValidationAttribute
25+ * Fix [ #211 ] by [ @rlvandaveer ] : honor attributes on classes which implement ValidationAttribute
1426
1527Bugs fixed:
1628* Fix [ #207 ] by [ @jcaillon ] : Option for the case sensitivity of command names
@@ -333,9 +345,11 @@ Other:
333345[ @rmcc13 ] : https://github.com/rmcc13
334346[ @SeanFeldman ] : https://github.com/SeanFeldman
335347[ @sebastienros ] : https://github.com/sebastienros
348+ [ @SteveBenz ] : https://github.com/SteveBenz
336349[ @TheConstructor ] : https://github.com/TheConstructor
337350
338- [ Unreleased ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.3...HEAD
351+ [ unreleased ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.4...HEAD
352+ [ v2.3.4 ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.3...v2.3.4
339353[ v2.3.3 ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.2...v2.3.3
340354[ v2.3.2 ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.1...v2.3.2
341355[ v2.3.1 ] : https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.0...v2.3.1
Original file line number Diff line number Diff line change @@ -23,11 +23,6 @@ PM> Install-Package McMaster.Extensions.CommandLineUtils
2323```
2424$ dotnet add package McMaster.Extensions.CommandLineUtils
2525```
26- ``` xml
27- <ItemGroup >
28- <PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.3.2" />
29- </ItemGroup >
30- ```
3126
3227Pre-release builds and symbols: https://www.myget.org/gallery/natemcmaster/
3328
Original file line number Diff line number Diff line change 2828 - powershell : ./build.ps1 -ci /p:AzureKeyVaultClientSecret=$(kv-access-token)
2929 displayName : Invoke build.ps1
3030 condition : ne(variables['kv-access-token'], '')
31+ - powershell : .\docs\generate.ps1 -Verbose -NoBuild
32+ displayName : Compile documentation
3133 - task : PublishTestResults@2
3234 displayName : Upload test results
3335 condition : always()
Original file line number Diff line number Diff line change 33 <PackageReleaseNotes Condition =" '$(VersionPrefix)' == '2.3.4'" >
44Bugs fixed:
55* Handle options with multiple characters in the short option name when only specified in a subcommand
6+ * Rearrange the order that commands are listed in the USAGE block and list all the commands on the line
67 </PackageReleaseNotes >
78 <PackageReleaseNotes Condition =" '$(VersionPrefix)' == '2.3.3'" >
89Enhancement:
You can’t perform that action at this time.
0 commit comments