Skip to content

Commit

Permalink
Change version to 3.3.0 (CLI 0.3.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
josefpihrt committed Nov 14, 2021
1 parent 831ac5f commit 89f6dbd
Show file tree
Hide file tree
Showing 14 changed files with 41 additions and 22 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 3.3.0 (2021-11-14)

* Bunch of bug fixes and small improvements
* Disable analyzers RCS1079 and RCS1090 by default

### 3.2.2 (2021-08-15)

* Ensure that shared assemblies with be loaded properly on .NET Core ([issue](https://github.com/JosefPihrt/Roslynator/issues/833))
Expand Down
2 changes: 1 addition & 1 deletion docs/analyzers/RCS1079.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
| -------- | ------- |
| Id | RCS1079 |
| Category | General |
| Severity | Info |
| Severity | None |

## Example

Expand Down
2 changes: 1 addition & 1 deletion docs/analyzers/RCS1090.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
| -------- | ------- |
| Id | RCS1090 |
| Category | Design |
| Severity | Info |
| Severity | None |

## Example

Expand Down
6 changes: 3 additions & 3 deletions src/Analyzers/CSharp/DiagnosticRules.Generated.cs
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ public static partial class DiagnosticRules
messageFormat: "Implement the functionality instead of throwing new NotImplementedException.",
category: DiagnosticCategories.General,
defaultSeverity: DiagnosticSeverity.Info,
isEnabledByDefault: true,
isEnabledByDefault: false,
description: null,
helpLinkUri: DiagnosticIdentifiers.ThrowingOfNewNotImplementedException,
customTags: Array.Empty<string>());
Expand Down Expand Up @@ -868,7 +868,7 @@ public static partial class DiagnosticRules
messageFormat: "Add call to 'ConfigureAwait'.",
category: DiagnosticCategories.Design,
defaultSeverity: DiagnosticSeverity.Info,
isEnabledByDefault: true,
isEnabledByDefault: false,
description: null,
helpLinkUri: DiagnosticIdentifiers.AddCallToConfigureAwaitOrViceVersa,
customTags: Array.Empty<string>());
Expand Down Expand Up @@ -2570,7 +2570,7 @@ public static partial class ReportOnly
messageFormat: "Remove call to 'ConfigureAwait'.",
category: DiagnosticCategories.Design,
defaultSeverity: DiagnosticSeverity.Info,
isEnabledByDefault: true,
isEnabledByDefault: false,
description: null,
helpLinkUri: DiagnosticIdentifiers.AddCallToConfigureAwaitOrViceVersa,
customTags: WellKnownDiagnosticTags.Unnecessary);
Expand Down
4 changes: 2 additions & 2 deletions src/Analyzers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@
| RCS1075 | [Avoid empty catch clause that catches System.Exception](../../docs/analyzers/RCS1075.md) | Design | Warning |
| RCS1077 | [Optimize LINQ method call](../../docs/analyzers/RCS1077.md) | Performance | Info |
| RCS1078 | [Use "" instead of string.Empty (or vice versa)](../../docs/analyzers/RCS1078.md) | General | None |
| RCS1079 | [Throwing of new NotImplementedException](../../docs/analyzers/RCS1079.md) | General | Info |
| RCS1079 | [Throwing of new NotImplementedException](../../docs/analyzers/RCS1079.md) | General | None |
| RCS1080 | [Use 'Count/Length' property instead of 'Any' method](../../docs/analyzers/RCS1080.md) | Performance | Info |
| RCS1081 | [Split variable declaration](../../docs/analyzers/RCS1081.md) | Readability | None |
| RCS1084 | [Use coalesce expression instead of conditional expression](../../docs/analyzers/RCS1084.md) | Simplification | Info |
| RCS1085 | [Use auto-implemented property](../../docs/analyzers/RCS1085.md) | Simplification | Info |
| RCS1089 | [Use --/++ operator instead of assignment](../../docs/analyzers/RCS1089.md) | Simplification | Info |
| RCS1090 | [Add call to 'ConfigureAwait' (or vice versa)](../../docs/analyzers/RCS1090.md) | Design | Info |
| RCS1090 | [Add call to 'ConfigureAwait' (or vice versa)](../../docs/analyzers/RCS1090.md) | Design | None |
| RCS1091 | [Remove empty region](../../docs/analyzers/RCS1091.md) | Redundancy | Hidden |
| RCS1093 | [Remove file with no code](../../docs/analyzers/RCS1093.md) | Redundancy | Info |
| RCS1094 | [Declare using directive on top level](../../docs/analyzers/RCS1094.md) | Readability | None |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@

<ItemGroup>
<ProjectReference Include="..\CommandLine\CommandLine.csproj" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="3.11.0" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Workspaces" Version="3.11.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.0.1" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Workspaces" Version="4.0.1" />
</ItemGroup>

</Project>
8 changes: 8 additions & 0 deletions src/CommandLine/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 0.3.0 (2021-11-14)

* Bump Roslyn version to 4.0.1
* Add option `--max-word-length` to `spellcheck` command
* Add spellchecking of string literals
* Fix exit code so the tool can be used in CI/CD pipeline
* Return 0 if no diagnostic is found

### 0.2.0 (2021-09-05)

* Add command [`rename-symbol`](https://github.com/JosefPihrt/Roslynator/blob/master/docs/cli/rename-symbol-command.md)
Expand Down
1 change: 1 addition & 0 deletions src/CommandLine/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
* [Roslynator Command-Line Interface](../../docs/cli/README.md)
* [How to Generate API Documentation](../../docs/HowToGenerateDocumentation.md)
* [How to Fix All Diagnostics in a Solution](../../docs/HowToFixAllDiagnostics.md)
* [Changelog](ChangeLog.md)
16 changes: 8 additions & 8 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@
</PropertyGroup>

<PropertyGroup>
<RoslynatorVersion>3.2.3.0</RoslynatorVersion>
<RoslynatorAnalyzersPackageVersion>3.2.2</RoslynatorAnalyzersPackageVersion>
<RoslynatorCoreVersion>2.1.0.5</RoslynatorCoreVersion>
<RoslynatorCorePackageVersion>2.1.0</RoslynatorCorePackageVersion>
<RoslynatorCliVersion>0.2.0.0</RoslynatorCliVersion>
<RoslynatorCliPackageVersion>0.2.0</RoslynatorCliPackageVersion>
<RoslynatorVersion>3.3.0.0</RoslynatorVersion>
<RoslynatorAnalyzersPackageVersion>3.3.0-rc</RoslynatorAnalyzersPackageVersion>
<RoslynatorCoreVersion>2.2.0.0</RoslynatorCoreVersion>
<RoslynatorCorePackageVersion>2.2.0</RoslynatorCorePackageVersion>
<RoslynatorCliVersion>0.3.0.0</RoslynatorCliVersion>
<RoslynatorCliPackageVersion>0.3.0</RoslynatorCliPackageVersion>
<RoslynatorFormattingAnalyzersVersion>1.2.2.0</RoslynatorFormattingAnalyzersVersion>
<RoslynatorFormattingAnalyzersPackageVersion>1.2.2</RoslynatorFormattingAnalyzersPackageVersion>
<RoslynatorCodeAnalysisAnalyzersVersion>1.1.1.0</RoslynatorCodeAnalysisAnalyzersVersion>
<RoslynatorCodeAnalysisAnalyzersPackageVersion>1.1.1</RoslynatorCodeAnalysisAnalyzersPackageVersion>
<RoslynatorTestingVersion>1.0.0.0</RoslynatorTestingVersion>
<RoslynatorTestingPackageVersion>1.0.0-rc</RoslynatorTestingPackageVersion>
<RoslynatorTestingVersion>1.0.0.1</RoslynatorTestingVersion>
<RoslynatorTestingPackageVersion>1.0.0</RoslynatorTestingPackageVersion>
<RoslynatorCodeFixesPackageVersion>2.0.0</RoslynatorCodeFixesPackageVersion>
<RoslynatorDocumentationPackageVersion>1.0.0</RoslynatorDocumentationPackageVersion>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio.Common/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("3.2.2.0")]
[assembly: AssemblyVersion("3.3.0.0")]
//[assembly: AssemblyFileVersion("1.0.0.0")]
2 changes: 1 addition & 1 deletion src/VisualStudio/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("3.2.2.0")]
[assembly: AssemblyVersion("3.3.0.0")]
//[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: NeutralResourcesLanguage("en-US")]
2 changes: 1 addition & 1 deletion src/VisualStudio/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="d42db039-5432-4399-bb62-67a9b4c3b838" Version="3.2.2" Language="en-US" Publisher="Josef Pihrt" />
<Identity Id="d42db039-5432-4399-bb62-67a9b4c3b838" Version="3.3.0" Language="en-US" Publisher="Josef Pihrt" />
<DisplayName>Roslynator 2019</DisplayName>
<Description xml:space="preserve">A collection of 500+ analyzers, refactorings and fixes for C#, powered by Roslyn.</Description>
<MoreInfo>http://github.com/JosefPihrt/Roslynator</MoreInfo>
Expand Down
5 changes: 5 additions & 0 deletions src/VisualStudioCode/package/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 3.3.0 (2021-11-14)

* Bunch of bug fixes and small improvements
* Disable analyzers RCS1079 and RCS1090 by default

## 3.2.2 (2021-08-15)

* Ensure that shared assemblies with be loaded properly on .NET Core ([issue](https://github.com/JosefPihrt/Roslynator/issues/833))
Expand Down
4 changes: 2 additions & 2 deletions tools/build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ if not defined _programFiles set _programFiles=%ProgramFiles%
set _msbuildPath="%_programFiles%\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\MSBuild"
set _properties=Configuration=Release,Deterministic=true,TreatWarningsAsErrors=true,WarningsNotAsErrors=1591
set _outDir=..\out\Release
set _version=3.2.3
set _version4=3.2.3.0
set _version=3.3.0
set _version4=3.3.0.0

orang replace "..\src\VisualStudio\source.extension.vsixmanifest" ^
-c "patterns\vsix_manifest_version.txt" from-file -t m r ^
Expand Down

0 comments on commit 89f6dbd

Please sign in to comment.