Skip to content

Commit

Permalink
Bump Roslyn to 4.7.0 (CLI + Testing framework) (#1218)
Browse files Browse the repository at this point in the history
  • Loading branch information
josefpihrt authored Oct 6, 2023
1 parent 2da0658 commit 989a183
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- 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)).
- Bump Roslyn to 4.7.0 ([#1218](https://github.com/dotnet/roslynator/pull/1218)).
- Applies to CLI and testing library.

### Fixed

Expand Down
4 changes: 2 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<Version Condition="'$(Version)' == ''">1.0.0</Version>
<RoslynatorRoslynVersion>4.4.0</RoslynatorRoslynVersion>
<RoslynatorRoslynAnalyzersVersion>3.3.4</RoslynatorRoslynAnalyzersVersion>
<RoslynatorCliRoslynVersion>4.6.0</RoslynatorCliRoslynVersion>
<RoslynatorTestingRoslynVersion>4.6.0</RoslynatorTestingRoslynVersion>
<RoslynatorCliRoslynVersion>4.7.0</RoslynatorCliRoslynVersion>
<RoslynatorTestingRoslynVersion>4.7.0</RoslynatorTestingRoslynVersion>
<RoslynatorCliPackageVersion>$(RoslynatorCliVersion)</RoslynatorCliPackageVersion>
<RoslynatorPackageVersion>$(Version)</RoslynatorPackageVersion>
<RoslynatorVersion>$(RoslynatorPackageVersion)</RoslynatorVersion>
Expand Down
4 changes: 4 additions & 0 deletions src/Tests/CSharp.Tests/SyntaxKindTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -584,6 +584,10 @@ public static void DetectNewSyntaxKinds()
// new in 4.4.0
case SyntaxKind.FileKeyword:
case SyntaxKind.ScopedType:
// new in 4.7.0
case SyntaxKind.CollectionExpression:
case SyntaxKind.ExpressionElement:
case SyntaxKind.SpreadElement:
{
break;
}
Expand Down

0 comments on commit 989a183

Please sign in to comment.