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
7
7
8
8
## [ Unreleased]
9
9
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
+
10
16
### Fixed
11
17
12
18
- 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
23
29
- Simplify LINQ query [ RCS1077] ( https://josefpihrt.github.io/docs/roslynator/analyzers/1077 ) ([ PR] ( https://github.com/dotnet/roslynator/pull/1384 ) )
24
30
- ` items.Select(selector).Average() ` => ` items.Average(selector) `
25
31
- ` 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 )
27
32
28
33
### Fixed
29
34
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
7
7
8
8
## [ Unreleased]
9
9
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
+
10
23
## [ 4.11.0] - 2024-02-19
11
24
12
25
### Added
Original file line number Diff line number Diff line change @@ -916,7 +916,7 @@ roslynator_analyzers.enabled_by_default = true|false
916
916
# Use string interpolation instead of 'string.Concat'
917
917
#dotnet_diagnostic.rcs1267.severity = suggestion
918
918
919
- # Simplify numeric comparison expression
919
+ # Simplify numeric comparison
920
920
#dotnet_diagnostic.rcs1268.severity = suggestion
921
921
922
922
# Use pattern matching
@@ -1027,6 +1027,11 @@ roslynator_analyzers.enabled_by_default = true|false
1027
1027
#roslynator_refactoring.generate_enum_values.enabled = true
1028
1028
#roslynator_refactoring.generate_event_invoking_method.enabled = true
1029
1029
#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
1030
1035
#roslynator_refactoring.implement_custom_enumerator.enabled = true
1031
1036
#roslynator_refactoring.implement_iequatable.enabled = true
1032
1037
#roslynator_refactoring.initialize_field_from_constructor.enabled = true
You can’t perform that action at this time.
0 commit comments