Skip to content

Commit efa9e7d

Browse files
(#184) Update release notes
1 parent 6aff42b commit efa9e7d

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Reset-WipReleaseNotes.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ $content = @(
55
"",
66
"Date: ???",
77
""
8-
"### Bugs"
8+
"### Bug Fixes"
99
"",
1010
"### Features",
1111
"",
@@ -15,11 +15,11 @@ $content = @(
1515
"",
1616
"- All targets:"
1717
"- .NET 6.0 targets:"
18-
"- .NET 7.0 targets:"
1918
"- .NET 8.0 targets:"
19+
"- .NET 9.0 targets:"
2020
"",
2121
"",
2222
""
2323
)
2424

25-
Set-Content "$PSScriptRoot/release-notes/wip-release-notes.md" $content -Encoding UTF8 -Force
25+
Set-Content "$PSScriptRoot/release-notes/wip-release-notes.md" $content -Encoding UTF8 -Force

release-notes/wip-release-notes.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ Date: ???
99
- Feature #123 changes the `TestCaptureLogger<T>` class to encapsulate an instance of `TestCaptureLogger` rather than inherit from it. If you're code relied on `TestCaptureLogger<T>` inheriting from `TestCaptureLogger` then it will likely break.
1010
- Feature #172 drops support for .NET 7.0. Use .NET 6.0 LTS, .NET 8.0 LTS or .NET 9.0 STS.
1111

12-
### Bugs
13-
1412
### Features
1513

1614
- #123: `TestCaptureLoggerProvider.CreateLogger<T>()`
@@ -20,6 +18,9 @@ Date: ???
2018
- `ITestOutputHelper.WriteLogs(ITestCaptureLogger...)`
2119
- `ITestOutputHelper.WriteLogs(TestCaptureLoggerProvider...)`
2220
- #171: Add `GetLogs(predicate)` to `TestCaptureLogger` and `TestCaptureLoggerProvider`.
21+
- #184: Add casting between `TestCaptureLogger` and `TestCaptureLogger<T>` to compensate for `TestCaptureLogger<T>` no longer inheriting from `TestCaptureLogger`
22+
- `TestCaptureLogger<T>` may be implicitly or explicitly cast to `TestCaptureLogger`
23+
- `TestCaptureLogger` must be explicitly cast to `TestCaptureLogger<T>`. The cast may fail if the category name used by the `TestCaptureLogger` does not match the type name of `T`.
2324

2425
### Miscellaneous
2526

0 commit comments

Comments
 (0)