Skip to content

Commit

Permalink
Bump version to 2.0.2-beta (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
maroontress-tomohisa authored Jan 8, 2025
1 parent 0723145 commit 89cf934
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@ jobs:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: |
8.0.x
9.0.x
- name: Install bomsweeper
run: dotnet tool install -g BomSweeper.GlobalTool
- name: Check for BOMs
run: bomsweeper '**/*.cs' '**/*.csproj' '**/*.sln'
- name: Build
run: dotnet build --configuration Release
- name: Install reportgenerator
Expand Down Expand Up @@ -47,4 +53,4 @@ jobs:
dotnet add StyleChecker/StyleChecker.Test/StyleChecker.Test.csproj package StyleChecker --version ${{ env.STYLECHECKER_VERSION }}
dotnet build --configuration Release
env:
STYLECHECKER_VERSION: 2.0.1
STYLECHECKER_VERSION: 2.0.2-alpha
2 changes: 1 addition & 1 deletion StyleChecker/StyleChecker/StyleChecker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<Copyright>Copyright (c) 2018 Maroontress Fast Software</Copyright>
<PackageTags>csharp, visual-studio, roslyn, analyzer, roslyn-analyzer, roslyn-codefix, stylechecker</PackageTags>
<NoPackageAnalysis>true</NoPackageAnalysis>
<Version>2.0.2-alpha</Version>
<Version>2.0.2-beta</Version>
<RepositoryType />
<Company>Maroontress Fast Software</Company>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down
3 changes: 2 additions & 1 deletion doc/rules/StinkyBooleanExpression.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ conditional expression with `b1 && b2`, the latter with `b1 || b2`.

### Throw expression

Conditional expressions where the second or third operand is a [_throw expression_][ThrowExpression] are not covered, as follows:
Conditional expressions where the second or third operand is a
[_throw expression_][ThrowExpression] are not covered, as follows:

```csharp
(b ? true : throw new Exception(…))
Expand Down

0 comments on commit 89cf934

Please sign in to comment.