Skip to content

Commit

Permalink
Finish changes for v2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
natemcmaster authored and Nate McMaster committed Feb 5, 2019
1 parent 7272f72 commit 334d905
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
13 changes: 7 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [Unreleased]
## [v2.3.2]

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

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

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

[#93]: https://github.com/natemcmaster/CommandLineUtils/issues/93
Bugs fixed:

* Duplicate subcommand names used to cause undefined behavior. Now, attempting to add a duplicate subcommand name or aliases will
Expand Down Expand Up @@ -325,7 +327,8 @@ Other:
[@sebastienros]: https://github.com/sebastienros
[@TheConstructor]: https://github.com/TheConstructor
[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.1...HEAD
[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.2...HEAD
[v2.3.2]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.1...v2.3.2
[v2.3.1]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.0...v2.3.1
[v2.3.0]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0
[v2.3.0-rc]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0-rc
Expand All @@ -344,5 +347,3 @@ Other:
[v2.1.0]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.0.1...v2.1.0
[v2.0.1]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.0.0...v2.0.1
[v2.0.0]: https://github.com/natemcmaster/CommandLineUtils/compare/b0c662d331c35ccf3145875cdef850df7e896c0f...v2.0.0
[issue-93]: https://github.com/natemcmaster/CommandLineUtils/issues/93
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
CommandLineUtils
================

[![Travis build status][travis-badge]](https://travis-ci.org/natemcmaster/CommandLineUtils/branches)
[![AppVeyor build status][appveyor-badge]](https://ci.appveyor.com/project/natemcmaster/CommandLineUtils/branch/master)

[travis-badge]: https://img.shields.io/travis/natemcmaster/CommandLineUtils/master.svg?label=travis&style=flat-square
[appveyor-badge]: https://img.shields.io/appveyor/ci/natemcmaster/CommandLineUtils/master.svg?label=appveyor&style=flat-square
[![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)

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

Expand All @@ -29,7 +25,7 @@ $ dotnet add package McMaster.Extensions.CommandLineUtils
```
```xml
<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.3.0" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.3.2" />
</ItemGroup>
```

Expand Down

0 comments on commit 334d905

Please sign in to comment.