Skip to content

Commit 334d905

Browse files
natemcmasterNate McMaster
authored andcommitted
Finish changes for v2.3.2
1 parent 7272f72 commit 334d905

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

CHANGELOG.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [Unreleased]
3+
## [v2.3.2]
44

55
Enhancements:
66
* Fix [#211] by [@rlvandaveer] - honor attributes on classes which implement ValidationAttribute
@@ -89,12 +89,12 @@ integration with ASP.NET Core's ["Generic Host" feature.](https://docs.microsoft
8989
Enhancements:
9090

9191
* Support the POSIX convention for cluster multiple options. For example, `-ixd` is treated the same as `-i -x -d`.
92-
Resolved [#93][issue-93].
92+
Resolved [#93].
9393
* [@bjorg]: support SingleOrNoValue notation. `--option[:value]`
9494
* New type: `Pager`. Provides a simple interaction model for displaying console output in a pager.
9595
* Display help text using the `less` pager on macOS/Linux.
9696
* Make suggestions when invalid options or commands are used, but there is a valid one that is similar.
97-
(Thanks to [@MadbHatter][@MadbHatter] for doing the initial work on this.)
97+
(Thanks to [@MadbHatter] for doing the initial work on this.)
9898
* Add support for subcommand aliases. Commands can be given multiple names.
9999

100100
```c#
@@ -111,6 +111,8 @@ Enhancements:
111111
```
112112
* [@lvermeulen]: Sort subcommands by name in help text. This can be disabled with `DefaultHelpTextGenerator.SortCommandsByName`.
113113

114+
[#93]: https://github.com/natemcmaster/CommandLineUtils/issues/93
115+
114116
Bugs fixed:
115117

116118
* Duplicate subcommand names used to cause undefined behavior. Now, attempting to add a duplicate subcommand name or aliases will
@@ -325,7 +327,8 @@ Other:
325327
[@sebastienros]: https://github.com/sebastienros
326328
[@TheConstructor]: https://github.com/TheConstructor
327329

328-
[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.1...HEAD
330+
[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.2...HEAD
331+
[v2.3.2]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.1...v2.3.2
329332
[v2.3.1]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.0...v2.3.1
330333
[v2.3.0]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0
331334
[v2.3.0-rc]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0-rc
@@ -344,5 +347,3 @@ Other:
344347
[v2.1.0]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.0.1...v2.1.0
345348
[v2.0.1]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.0.0...v2.0.1
346349
[v2.0.0]: https://github.com/natemcmaster/CommandLineUtils/compare/b0c662d331c35ccf3145875cdef850df7e896c0f...v2.0.0
347-
348-
[issue-93]: https://github.com/natemcmaster/CommandLineUtils/issues/93

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
CommandLineUtils
22
================
33

4-
[![Travis build status][travis-badge]](https://travis-ci.org/natemcmaster/CommandLineUtils/branches)
5-
[![AppVeyor build status][appveyor-badge]](https://ci.appveyor.com/project/natemcmaster/CommandLineUtils/branch/master)
6-
7-
[travis-badge]: https://img.shields.io/travis/natemcmaster/CommandLineUtils/master.svg?label=travis&style=flat-square
8-
[appveyor-badge]: https://img.shields.io/appveyor/ci/natemcmaster/CommandLineUtils/master.svg?label=appveyor&style=flat-square
4+
[![Build Status](https://dev.azure.com/natemcmaster/github/_apis/build/status/CommandLineUtils?branchName=master)](https://dev.azure.com/natemcmaster/github/_build/latest?definitionId=3&branchName=master)
95

106
[![NuGet][main-nuget-badge]][main-nuget] [![MyGet][main-myget-badge]][main-myget]
117

@@ -29,7 +25,7 @@ $ dotnet add package McMaster.Extensions.CommandLineUtils
2925
```
3026
```xml
3127
<ItemGroup>
32-
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.3.0" />
28+
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.3.2" />
3329
</ItemGroup>
3430
```
3531

0 commit comments

Comments
 (0)