Skip to content

Commit ace5686

Browse files
author
Ruben
authored
Merge pull request #61 from messerli-informatik-ag/update-analyzers
Update analyzers
2 parents 97767ca + 20653e6 commit ace5686

File tree

3 files changed

+25
-5
lines changed

3 files changed

+25
-5
lines changed

CodeStyle/CodeStyle.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.Build.NoTargets">
33
<PropertyGroup>
4-
<Version>2.0.0</Version>
4+
<Version>2.0.1</Version>
55
<RepositoryUrl>https://github.com/messerli-informatik-ag/code-style</RepositoryUrl>
66
<RepositoryType>git</RepositoryType>
77
<PackageId>Messerli.CodeStyle</PackageId>
@@ -21,8 +21,8 @@
2121
<TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks>
2222
</PropertyGroup>
2323
<ItemGroup>
24-
<PackageReference Include="IDisposableAnalyzers" Version="3.4.8" PrivateAssets="none" />
25-
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.321" PrivateAssets="none" />
24+
<PackageReference Include="IDisposableAnalyzers" Version="3.4.13" PrivateAssets="none" />
25+
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.333" PrivateAssets="none" />
2626
</ItemGroup>
2727
<ItemGroup>
2828
<None Include="build\**\*">

changelog.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,23 @@ Initial release
7272
Notable changes/fixes:
7373
* [9c5c071: Support records without braces](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/compare/1.2.0-beta.312...1.2.0-beta.321)
7474
* [46d2e37: Support implicit object creation expressions in SA1129 code fix](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/commit/46d2e37fed1e471446f32c88c6bdaf2530239570)
75+
76+
## 2.0.1
77+
* Update IDisposableAnalyzers to 3.4.13. Excerpt from [IDisposableAnalyzers Changelog]:
78+
> #### 3.4.13
79+
> * BUGFIX: Specialcase Gu.Reactive extension methods.
80+
> #### 3.4.12
81+
> * BUGFIX: When leaveOpen has default value
82+
> #### 3.4.11
83+
> * BUGFIX IDISP023 handle trivial and.
84+
> * BUGFIX IDISP023 when chained constructors
85+
> * BUGFIX IDISP001 when if statement.
86+
> * BUGFIX IDISP004 when chained leave open.
87+
> #### 3.4.10
88+
> * BUGFIX: Handle using in loop
89+
> #### 3.4.9
90+
> * BUGFIX: IDISP023 Allow touching static reference types.
91+
> * BUGFIX: AD0001: Analyzer 'IDisposableAnalyzers.LocalDeclarationAnalyzer
92+
* Update StyleCop.Analyzers to 1.2.0-beta.333 ([diff](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/compare/1.2.0-beta.321...1.2.0-beta.333)) \
93+
Notable changes/fixes:
94+
* [23db6c0: Avoid reporting SA1141 (Use tuple syntax) in expression trees](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/commit/af356f9b36dc4849a678c0b8c918123fa567913b)

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Add the following package reference to your project or to your `Directory.Build.
1414
<?xml version="1.0" encoding="utf-8"?>
1515
<Project>
1616
<ItemGroup>
17-
+ <PackageReference Include="Messerli.CodeStyle" Version="2.0.0" PrivateAssets="all" />
17+
+ <PackageReference Include="Messerli.CodeStyle" Version="2.0.1" PrivateAssets="all" />
1818
</ItemGroup>
1919
</Project>
2020
```
@@ -26,7 +26,7 @@ Add `Messerli.CodeStyle` to your `Packages.props`:
2626
<?xml version="1.0" encoding="utf-8"?>
2727
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2828
<ItemGroup Label="Build dependencies">
29-
+ <PackageReference Update="Messerli.CodeStyle" Version="2.0.0" />
29+
+ <PackageReference Update="Messerli.CodeStyle" Version="2.0.1" />
3030
</ItemGroup>
3131
</Project>
3232
```

0 commit comments

Comments
 (0)