Skip to content

Commit cf83608

Browse files
authored
Finish 2.3.4 patch changes
1 parent daf989b commit cf83608

File tree

6 files changed

+19
-37
lines changed

6 files changed

+19
-37
lines changed

.appveyor.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

CHANGELOG.md

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

517
Enhancements:
@@ -10,7 +22,7 @@ Enhancements:
1022
## [v2.3.2]
1123

1224
Enhancements:
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

1527
Bugs 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

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff 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

3227
Pre-release builds and symbols: https://www.myget.org/gallery/natemcmaster/
3328

azure-pipelines.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
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()

src/CommandLineUtils/releasenotes.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.3.4'">
44
Bugs 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'">
89
Enhancement:

0 commit comments

Comments
 (0)