Skip to content

Commit b6fbdc6

Browse files
committed
Bump versions and update analyzer releases and changelog
1 parent 9ea01b2 commit b6fbdc6

File tree

6 files changed

+12
-10
lines changed

6 files changed

+12
-10
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
; Shipped analyzer releases
22
; https://github.com/dotnet/roslyn-analyzers/blob/main/src/Microsoft.CodeAnalysis.Analyzers/ReleaseTrackingAnalyzers.Help.md
33

4+
## Release 0.1.0
5+
### New Rules
6+
Rule ID | Category | Severity | Notes
7+
--------|----------|----------|-------
8+
MESSERLI001 | Access Modifiers | Warning | RuleConstants
Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,2 @@
11
; Unshipped analyzer release
22
; https://github.com/dotnet/roslyn-analyzers/blob/main/src/Microsoft.CodeAnalysis.Analyzers/ReleaseTrackingAnalyzers.Help.md
3-
4-
### New Rules
5-
6-
Rule ID | Category | Severity | Notes
7-
--------|----------|----------|-------
8-
MESSERLI001 | Access Modifiers | Warning | RuleConstants

CodeStyle.Analyzers/CodeStyle.Analyzers.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<LangVersion>9.0</LangVersion>
77
</PropertyGroup>
88
<PropertyGroup>
9-
<Version>1.0.0</Version>
9+
<Version>0.1.0</Version>
1010
<PackageTags>analyzers</PackageTags>
1111
<Description>Various analyzers bundled with opinionated configuration</Description>
1212
</PropertyGroup>

CodeStyle/CodeStyle.csproj

Lines changed: 1 addition & 1 deletion
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.1</Version>
4+
<Version>2.1.0</Version>
55
<PackageId>Messerli.CodeStyle</PackageId>
66
<PackageTags>analyzers</PackageTags>
77
<Description>Various analyzers bundled with opinionated configuration</Description>

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,6 @@ Initial release
9292
* 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)) \
9393
Notable changes/fixes:
9494
* [23db6c0: Avoid reporting SA1141 (Use tuple syntax) in expression trees](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/commit/af356f9b36dc4849a678c0b8c918123fa567913b)
95+
96+
## 2.1.0
97+
* Warn when interface method has `public` accessibility modifier (`MESSERLI001`)

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.1" PrivateAssets="all" />
17+
+ <PackageReference Include="Messerli.CodeStyle" Version="2.1.0" 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.1" />
29+
+ <PackageReference Update="Messerli.CodeStyle" Version="2.1.0" />
3030
</ItemGroup>
3131
</Project>
3232
```

0 commit comments

Comments
 (0)