Skip to content

Commit 2a376df

Browse files
authored
Update changelog, release notes, and docs for 2.3.0
1 parent 757ff14 commit 2a376df

File tree

125 files changed

+127716
-55
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+127716
-55
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [v2.3.0]
4+
5+
**Dec. 31, 2018**
6+
7+
Enhancements:
8+
* PR [#192][192] by [@TheConstructor]: Add IUnhandledExceptionHandler
9+
10+
Bugs fixed:
11+
* Fix [#195][195]: don't use Task.Run in generic host
12+
13+
[192]: https://github.com/natemcmaster/CommandLineUtils/pull/192
14+
[195]: https://github.com/natemcmaster/CommandLineUtils/issues/195
15+
316
## [v2.3.0-rc]
417

518
Bugs fixed:
@@ -293,7 +306,8 @@ Other:
293306
[@sebastienros]: https://github.com/sebastienros
294307
[@TheConstructor]: https://github.com/TheConstructor
295308

296-
[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.0-rc...HEAD
309+
[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.0...HEAD
310+
[v2.3.0]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0
297311
[v2.3.0-rc]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0-rc
298312
[v2.3.0-beta]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0-beta
299313
[v2.3.0-alpha]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0-alpha

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This is a fork of [Microsoft.Extensions.CommandLineUtils](https://github.com/asp
1919

2020
## Install
2121

22-
Install the NuGet package into your project.
22+
Install the [NuGet package][main-nuget] into your project.
2323

2424
```
2525
PM> Install-Package McMaster.Extensions.CommandLineUtils
@@ -29,7 +29,7 @@ $ dotnet add package McMaster.Extensions.CommandLineUtils
2929
```
3030
```xml
3131
<ItemGroup>
32-
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.5" />
32+
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.3.0" />
3333
</ItemGroup>
3434
```
3535

docs/api/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ uid: latest_api_ref
44
API Reference
55
=============
66

7-
**Version 2.2**
7+
**Version 2.3**
88

99
McMaster.Extensions.CommandLineUtils supports three target frameworks.
1010

docs/docfx.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"build": {
2424
"content": [
2525
{ "version": "unstable", "files": ["**/*.yml", "**/*.md"], "src": "obj/unstable", "dest": "unstable" },
26-
{ "version": "v2.2", "files": ["**/*.yml", "**/*.md"], "src": "v2.2", "dest": "v2.2" },
27-
{ "version": "v2.2", "files": ["**/*.yml", "**/*.md"], "exclude": [ "v2.2/","obj/", "**.meta", "README.md", "filterConfig.yml" ] }
26+
{ "version": "v2.3", "files": ["**/*.yml", "**/*.md"], "exclude": [ "v2.2/", "obj/", "**.meta", "README.md", "filterConfig.yml" ] },
27+
{ "version": "v2.2", "files": ["**/*.yml", "**/*.md"], "src": "v2.2", "dest": "v2.2" }
2828
],
2929
"resource": [
3030
{

docs/generate.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ try {
2424
exec git worktree add $targetDir gh-pages 2>&1 | out-null
2525
}
2626

27-
$docfxVersion = '2.40.0'
27+
$docfxVersion = '2.40.5'
2828
$docfxRoot = "$buildRoot/packages/docfx.console/$docfxVersion"
2929
$docfx = "$docfxRoot/tools/docfx.exe"
3030
if (-not (Test-Path $docfx)) {

docs/samples/attributes/Attributes.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.5" />
10+
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.3.0" />
1111
</ItemGroup>
1212

1313
</Project>

docs/samples/custom-attribute/CustomAttribute.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.5" />
10+
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.3.0" />
1111
</ItemGroup>
1212

1313
</Project>

docs/samples/custom-conventions/CustomConvention.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.5" />
10+
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.3.0" />
1111
</ItemGroup>
1212

1313
</Project>

docs/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.5" />
9+
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.3.0" />
1010
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.0.0" />
1111
</ItemGroup>
1212

docs/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.5" />
10+
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.3.0" />
1111
</ItemGroup>
1212

1313
</Project>

0 commit comments

Comments
 (0)