Skip to content

Commit

Permalink
Release 4.6.0 (#1220)
Browse files Browse the repository at this point in the history
  • Loading branch information
josefpihrt authored Oct 18, 2023
1 parent 7eb8e16 commit 3eab64e
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 4 deletions.
2 changes: 2 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.6.0] - 2023-10-18

### Added

- Add social card ([#1212](https://github.com/dotnet/roslynator/pull/1212)).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -908,13 +908,13 @@ public static ImmutableDictionary<string, string> GetSumCountOrLength(string pro
public static ImmutableDictionary<string, string> Sum_Count { get; } = ImmutableDictionary.CreateRange(new[]
{
new KeyValuePair<string, string>("PropertyName", "Count"),
new KeyValuePair<string, string>("MethodName", "Sum")
new KeyValuePair<string, string>("MethodName", "Sum"),
});

public static ImmutableDictionary<string, string> Sum_Length { get; } = ImmutableDictionary.CreateRange(new[]
{
new KeyValuePair<string, string>("PropertyName", "Length"),
new KeyValuePair<string, string>("MethodName", "Sum")
new KeyValuePair<string, string>("MethodName", "Sum"),
});
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public sealed class RemovePartialModifierFromTypeWithSinglePartAnalyzer : BaseDi
// ASP.NET Core
MetadataName.Parse("Microsoft.AspNetCore.Components.ComponentBase"),
// WPF
MetadataName.Parse("System.Windows.FrameworkElement")
MetadataName.Parse("System.Windows.FrameworkElement"),
};

public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ internal sealed class RequiredConfigOptionNotSetAnalyzer : AbstractRequiredConfi
{
ConfigOptions.BodyStyle,
ConfigOptions.UseBlockBodyWhenDeclarationSpansOverMultipleLines,
ConfigOptions.UseBlockBodyWhenExpressionSpansOverMultipleLines
ConfigOptions.UseBlockBodyWhenExpressionSpansOverMultipleLines,
};

public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics
Expand Down
30 changes: 30 additions & 0 deletions src/VisualStudioCode/package/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.6.0] - 2023-10-18

### Added

- Add social card ([#1212](https://github.com/dotnet/roslynator/pull/1212)).
- Add nullable annotation to public API ([#1198](https://github.com/JosefPihrt/Roslynator/pull/1198)).
- Add refactoring "Remove directive (including content)" ([#1224](https://github.com/dotnet/roslynator/pull/1224)).

### Changed

- Update logo ([#1208](https://github.com/dotnet/roslynator/pull/1208), [#1210](https://github.com/dotnet/roslynator/pull/1210)).
- Migrate to .NET Foundation ([#1206](https://github.com/dotnet/roslynator/pull/1206), [#1207](https://github.com/dotnet/roslynator/pull/1207), [#1219](https://github.com/dotnet/roslynator/pull/1219)).
- Bump Roslyn to 4.7.0 ([#1218](https://github.com/dotnet/roslynator/pull/1218)).
- Applies to CLI and testing library.
- Bump Microsoft.Build.Locator to 1.6.1 ([#1194](https://github.com/josefpihrt/roslynator/pull/1194))
- Improve testing framework ([#1214](https://github.com/dotnet/roslynator/pull/1214))
- Add methods to `DiagnosticVerifier`, `RefactoringVerifier` and `CompilerDiagnosticFixVerifier`.
- Add property `DiagnosticVerifier.Descriptor` (BREAKING CHANGE).
- Add property `CompilerDiagnosticFixVerifier.DiagnosticId` (BREAKING CHANGE).
- Make property `DiagnosticTestData.Descriptor` obsolete.
- Make property `CompilerDiagnosticFixTestData.DiagnosticId` obsolete.

### Fixed

- Fix [RCS1164](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1164) ([#1196](https://github.com/JosefPihrt/Roslynator/pull/1196)).
- Fix [RCS1241](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1241) ([#1197](https://github.com/JosefPihrt/Roslynator/pull/1197)).
- Fix [RCS1250](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1250) ([#1205](https://github.com/JosefPihrt/Roslynator/pull/1205)).
- [CLI] Fix globbing ([#1215](https://github.com/JosefPihrt/Roslynator/pull/1215)).
- [CLI] Fix generation of root file ([#1221](https://github.com/JosefPihrt/Roslynator/pull/1221)).

## [4.5.0] - 2023-08-27

### Added
Expand Down

0 comments on commit 3eab64e

Please sign in to comment.