Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
hanahbaker1 authored Apr 8, 2024
2 parents 04d2e1d + a93b620 commit fd6773d
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 7 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ pr:
- '.github/*'

variables:
PackageVersion: '4.0.3'
VersionBuildNumber: $[counter('4.0.3', 1)]
PackageVersion: '4.0.4'
VersionBuildNumber: $[counter('4.0.4', 1)]
IntegrationTestVersion: $(PackageVersion)-alpha.$(VersionBuildNumber)
ProjectsToPack: src/Stryker.CLI/Stryker.CLI/Stryker.CLI.csproj
ForkIntegrationNugetFeedUri: https://f.feedz.io/stryker/stryker-net/nuget/index.json
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"version": "4.0.3",
"versionPrefix": "4.0.3",
"version": "4.0.4",
"versionPrefix": "4.0.4",
"versionSuffix": "",
"scripts": {
"prepare-release": "node prepare-release.js"
Expand Down
4 changes: 4 additions & 0 deletions src/Stryker.CLI/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [4.0.4](https://github.com/stryker-mutator/stryker-net/compare/[email protected]@4.0.4) (2024-04-05)



## [4.0.3](https://github.com/stryker-mutator/stryker-net/compare/[email protected]@4.0.3) (2024-03-29)


Expand Down
2 changes: 1 addition & 1 deletion src/Stryker.CLI/Stryker.CLI/Stryker.CLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>4.0.3</VersionPrefix>
<VersionPrefix>4.0.4</VersionPrefix>
<VersionSuffix></VersionSuffix>
<PackageId>dotnet-stryker</PackageId>
<Authors>Richard Werkman, Rouke Broersma</Authors>
Expand Down
9 changes: 9 additions & 0 deletions src/Stryker.Core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [4.0.4](https://github.com/stryker-mutator/stryker-net/compare/[email protected]@4.0.4) (2024-04-05)


### Bug Fixes

* Use ConcurrentBag instead of List to prevent InvalidOperationException during mutation ([#2901](https://github.com/stryker-mutator/stryker-net/issues/2901)) ([181a927](https://github.com/stryker-mutator/stryker-net/commit/181a927a54d4b500d9f3048d5b4690bcf974dbff))



## [4.0.3](https://github.com/stryker-mutator/stryker-net/compare/[email protected]@4.0.3) (2024-03-29)


Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Linq;
Expand Down Expand Up @@ -64,7 +65,7 @@ public IEnumerable<IMutationTestProcess> MutateProjects(StrykerOptions options,
InitializeDashboardProjectInformation(options, projectInfos.First());
var inputs = _initializationProcess.GetMutationTestInputs(options, projectInfos, _runner);

var mutationTestProcesses = new List<IMutationTestProcess>();
var mutationTestProcesses = new ConcurrentBag<IMutationTestProcess>();
Parallel.ForEach(inputs, mutationTestInput =>
{
mutationTestProcesses.Add(_projectMutator.MutateProject(options, mutationTestInput, reporters));
Expand Down
2 changes: 1 addition & 1 deletion src/Stryker.Core/Stryker.Core/Stryker.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>4.0.3</VersionPrefix>
<VersionPrefix>4.0.4</VersionPrefix>
<VersionSuffix></VersionSuffix>
<PackageId>stryker</PackageId>
<Product>Mutation Testing</Product>
Expand Down

0 comments on commit fd6773d

Please sign in to comment.