Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Werkman committed Nov 8, 2024
1 parent 96d7c8c commit 41b867b
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 8 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.3.0'
VersionBuildNumber: $[counter('4.3.0', 1)]
PackageVersion: '4.4.0'
VersionBuildNumber: $[counter('4.4.0', 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.3.0",
"versionPrefix": "4.3.0",
"version": "4.4.0",
"versionPrefix": "4.4.0",
"versionSuffix": "",
"scripts": {
"prepare-release": "node prepare-release.js"
Expand Down
4 changes: 2 additions & 2 deletions prepare-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ rl.question('What should the new package version be? ', (newVersionNumber) => {

console.log(`Creating commit`);
exec('git add .');
// exec(`git commit ${commitMessageLines.map(entry => `-m "${entry}"`).join(' ')}`);
exec(`git commit ${commitMessageLines.map(entry => `-m "${entry}"`).join(' ')}`);

console.log(`Pushing commit ${versionSuffix?'':' and tags'}`);
// exec('git push --follow-tags');
exec('git push --follow-tags');
rl.close();
});

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.4.0](https://github.com/stryker-mutator/stryker-net/compare/[email protected]@4.4.0) (2024-11-08)



# [4.3.0](https://github.com/stryker-mutator/stryker-net/compare/[email protected]@4.3.0) (2024-10-14)


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.3.0</VersionPrefix>
<VersionPrefix>4.4.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<PackageId>dotnet-stryker</PackageId>
<Authors>Richard Werkman, Rouke Broersma</Authors>
Expand Down
18 changes: 18 additions & 0 deletions src/Stryker.Core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# [4.4.0](https://github.com/stryker-mutator/stryker-net/compare/[email protected]@4.4.0) (2024-11-08)


### Bug Fixes

* **embedded resources:** Use concurrent dictionnary for resource cache ([#3095](https://github.com/stryker-mutator/stryker-net/issues/3095)) ([b3f0ef0](https://github.com/stryker-mutator/stryker-net/commit/b3f0ef0a009984922a010f8b90e7fc1880cfd282))
* **reference alias:** Properly support PackageReference Alias ([#3070](https://github.com/stryker-mutator/stryker-net/issues/3070)) ([d1a9ade](https://github.com/stryker-mutator/stryker-net/commit/d1a9ade0eb2fa9f15aef4d92e3549cb64372644e))
* **top-level statements:** Fix issue with global statements ([#3087](https://github.com/stryker-mutator/stryker-net/issues/3087)) ([96d7c8c](https://github.com/stryker-mutator/stryker-net/commit/96d7c8c3fa1bb055db0284130a1ed602420730ab))


### Features

* Add string mutators for LastIndexOf and IndexOf. ([#3054](https://github.com/stryker-mutator/stryker-net/issues/3054)) ([3f6e3ad](https://github.com/stryker-mutator/stryker-net/commit/3f6e3ad8dc13ddb0aa244178321788ddaee209dc))
* **Mutators:** Add Collection Expression Mutator ([#3082](https://github.com/stryker-mutator/stryker-net/issues/3082)) ([4ba906b](https://github.com/stryker-mutator/stryker-net/commit/4ba906bc19453093fa6bb952f31d26920cd481d4))
* **nuget:** Make nuget restore errors non fatal ([#3072](https://github.com/stryker-mutator/stryker-net/issues/3072)) ([b7f9cca](https://github.com/stryker-mutator/stryker-net/commit/b7f9ccac7e384b14f7c21321006cbae4261f6d56))



# [4.3.0](https://github.com/stryker-mutator/stryker-net/compare/[email protected]@4.3.0) (2024-10-14)


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.3.0</VersionPrefix>
<VersionPrefix>4.4.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<PackageId>stryker</PackageId>
<Product>Mutation Testing</Product>
Expand Down

0 comments on commit 41b867b

Please sign in to comment.