Skip to content

Commit

Permalink
Release 4.12.0 (#1417)
Browse files Browse the repository at this point in the history
  • Loading branch information
josefpihrt authored Mar 19, 2024
1 parent deaf4fb commit 8330609
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
7 changes: 6 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.12.0] - 2024-03-19

### Added

- Add analyzer "Simplify numeric comparison" [RCS1268](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1268) ([PR](https://github.com/dotnet/roslynator/pull/1405) by @jakubreznak)

### Fixed

- Fix analyzer [RCS1267](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1267) ([PR](https://github.com/dotnet/roslynator/pull/1412))
Expand All @@ -23,7 +29,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Simplify LINQ query [RCS1077](https://josefpihrt.github.io/docs/roslynator/analyzers/1077) ([PR](https://github.com/dotnet/roslynator/pull/1384))
- `items.Select(selector).Average()` => `items.Average(selector)`
- `items.Select(selector).Sum()` => `items.Sum(selector)`
- Add analyzer "Simplify numeric comparison" [RCS1268](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1268) ([PR](https://github.com/dotnet/roslynator/pull/1405) by @jakubreznak)

### Fixed

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

## [Unreleased]

## [4.12.0] - 2024-03-19

### Added

- Add analyzer "Simplify numeric comparison" [RCS1268](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1268) ([PR](https://github.com/dotnet/roslynator/pull/1405) by @jakubreznak)

### Fixed

- Fix analyzer [RCS1267](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1267) ([PR](https://github.com/dotnet/roslynator/pull/1412))
- Fix "Unknown value 'Default'" exception ([PR](https://github.com/dotnet/roslynator/pull/1411))
- Fix name of `UnityEngine.SerializeField` attribute ([PR](https://github.com/dotnet/roslynator/pull/1419))
- Fix analyzer [RCS1077](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1077) ([PR](https://github.com/dotnet/roslynator/pull/1421))

## [4.11.0] - 2024-02-19

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,7 @@ roslynator_analyzers.enabled_by_default = true|false
# Use string interpolation instead of 'string.Concat'
#dotnet_diagnostic.rcs1267.severity = suggestion
# Simplify numeric comparison expression
# Simplify numeric comparison
#dotnet_diagnostic.rcs1268.severity = suggestion
# Use pattern matching
Expand Down Expand Up @@ -1027,6 +1027,11 @@ roslynator_analyzers.enabled_by_default = true|false
#roslynator_refactoring.generate_enum_values.enabled = true
#roslynator_refactoring.generate_event_invoking_method.enabled = true
#roslynator_refactoring.generate_property_for_debuggerdisplay_attribute.enabled = true
#roslynator_refactoring.change_accessibility.enabled = true
#roslynator_refactoring.change_method_return_type_to_void.enabled = true
#roslynator_refactoring.change_type_according_to_expression.enabled = true
#roslynator_refactoring.check_expression_for_null.enabled = true
#roslynator_refactoring.check_parameter_for_null.enabled = true
#roslynator_refactoring.implement_custom_enumerator.enabled = true
#roslynator_refactoring.implement_iequatable.enabled = true
#roslynator_refactoring.initialize_field_from_constructor.enabled = true
Expand Down

0 comments on commit 8330609

Please sign in to comment.