Skip to content

Commit 32a5e14

Browse files
committed
Finish 2.2.3 patch
1 parent 70548f1 commit 32a5e14

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

CHANGELOG.md

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

3-
## Unreleased
3+
## [v2.2.3]
4+
5+
**May 10, 2018**
46

57
Minor improvements:
68

@@ -158,7 +160,8 @@ Other:
158160
[@rmcc13]: https://github.com/rmcc13
159161
[@sebastienros]: https://github.com/sebastienros
160162

161-
[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.2...HEAD
163+
[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.3...HEAD
164+
[v2.2.3]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.3...v2.2.3
162165
[v2.2.2]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.1...v2.2.2
163166
[v2.2.1]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.0...v2.2.1
164167
[v2.2.0]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.0-rc...v2.2.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.2" />
32+
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.3" />
3333
</ItemGroup>
3434
```
3535

docs/docs/concepts/samples/dependency-injection/custom/CustomServices.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.2" />
9+
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.3" />
1010
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.0.0" />
1111
</ItemGroup>
1212

docs/docs/concepts/samples/dependency-injection/standard/StandardServices.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.2" />
10+
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.3" />
1111
</ItemGroup>
1212

1313
</Project>

docs/docs/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
```xml
2424
<ItemGroup>
25-
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.2" />
25+
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.3" />
2626
</ItemGroup>
2727
```
2828

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.2" />
25+
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.3" />
2626
</ItemGroup>
2727
```
2828

releasenotes.props

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
66
Minor improvement:
77
8-
- Add conventions from attributes that implement IConvention and IMemberConvention
9-
- Add a help option by default as long as it doesn't conflict with existing options
8+
* Make it easier to override the version text shown when `--version` is specified.
9+
* Make DefaultHelpTextGenerator's constructor protected so you can inherit from this type
10+
* Fix DebugHelper.HandleDebugSwitch
1011
1112
See more details here: https://github.com/natemcmaster/CommandLineUtils/blob/master/CHANGELOG.md#v$(VersionPrefix.Replace('.',''))
1213
]]>

0 commit comments

Comments
 (0)