File tree Expand file tree Collapse file tree 3 files changed +25
-2
lines changed
src/VisualStudioCode/package Expand file tree Collapse file tree 3 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 4.12.0] - 2024-03-19
11+
12+ ### Added
13+
14+ - Add analyzer "Simplify numeric comparison" [ RCS1268] ( https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1268 ) ([ PR] ( https://github.com/dotnet/roslynator/pull/1405 ) by @jakubreznak )
15+
1016### Fixed
1117
1218- Fix analyzer [ RCS1267] ( https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1267 ) ([ PR] ( https://github.com/dotnet/roslynator/pull/1412 ) )
@@ -23,7 +29,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2329- Simplify LINQ query [ RCS1077] ( https://josefpihrt.github.io/docs/roslynator/analyzers/1077 ) ([ PR] ( https://github.com/dotnet/roslynator/pull/1384 ) )
2430 - ` items.Select(selector).Average() ` => ` items.Average(selector) `
2531 - ` items.Select(selector).Sum() ` => ` items.Sum(selector) `
26- - Add analyzer "Simplify numeric comparison" [ RCS1268] ( https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1268 ) ([ PR] ( https://github.com/dotnet/roslynator/pull/1405 ) by @jakubreznak )
2732
2833### Fixed
2934
Original file line number Diff line number Diff line change @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 4.12.0] - 2024-03-19
11+
12+ ### Added
13+
14+ - Add analyzer "Simplify numeric comparison" [ RCS1268] ( https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1268 ) ([ PR] ( https://github.com/dotnet/roslynator/pull/1405 ) by @jakubreznak )
15+
16+ ### Fixed
17+
18+ - Fix analyzer [ RCS1267] ( https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1267 ) ([ PR] ( https://github.com/dotnet/roslynator/pull/1412 ) )
19+ - Fix "Unknown value 'Default'" exception ([ PR] ( https://github.com/dotnet/roslynator/pull/1411 ) )
20+ - Fix name of ` UnityEngine.SerializeField ` attribute ([ PR] ( https://github.com/dotnet/roslynator/pull/1419 ) )
21+ - Fix analyzer [ RCS1077] ( https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1077 ) ([ PR] ( https://github.com/dotnet/roslynator/pull/1421 ) )
22+
1023## [ 4.11.0] - 2024-02-19
1124
1225### Added
Original file line number Diff line number Diff line change @@ -916,7 +916,7 @@ roslynator_analyzers.enabled_by_default = true|false
916916# Use string interpolation instead of 'string.Concat'
917917#dotnet_diagnostic.rcs1267.severity = suggestion
918918
919- # Simplify numeric comparison expression
919+ # Simplify numeric comparison
920920#dotnet_diagnostic.rcs1268.severity = suggestion
921921
922922# Use pattern matching
@@ -1027,6 +1027,11 @@ roslynator_analyzers.enabled_by_default = true|false
10271027#roslynator_refactoring.generate_enum_values.enabled = true
10281028#roslynator_refactoring.generate_event_invoking_method.enabled = true
10291029#roslynator_refactoring.generate_property_for_debuggerdisplay_attribute.enabled = true
1030+ #roslynator_refactoring.change_accessibility.enabled = true
1031+ #roslynator_refactoring.change_method_return_type_to_void.enabled = true
1032+ #roslynator_refactoring.change_type_according_to_expression.enabled = true
1033+ #roslynator_refactoring.check_expression_for_null.enabled = true
1034+ #roslynator_refactoring.check_parameter_for_null.enabled = true
10301035#roslynator_refactoring.implement_custom_enumerator.enabled = true
10311036#roslynator_refactoring.implement_iequatable.enabled = true
10321037#roslynator_refactoring.initialize_field_from_constructor.enabled = true
You can’t perform that action at this time.
0 commit comments