Skip to content

Commit df525db

Browse files
Set next BenchmarkDotNet version: 0.15.5
1 parent 6a47e26 commit df525db

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

build/BenchmarkDotNet.Build/Meta/Repo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public static class Repo
1010
public const string Owner = "dotnet";
1111
public const string Name = "BenchmarkDotNet";
1212
public const string HttpsUrlBase = $"https://github.com/{Owner}/{Name}";
13-
public const string HttpsGitUrl = $"{HttpsUrlBase}.git";
13+
public const string SshGitUrl = $"git@github.com:{Owner}/{Name}.git";
1414

1515
public const string ChangelogBranch = "docs-changelog";
1616
public const string DocsStableBranch = "docs-stable";

build/BenchmarkDotNet.Build/Runners/Changelog/ChangelogBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,8 @@ private void EnsureSrcDirectoryExist(bool forceClone = false)
244244

245245
if (!context.DirectoryExists(SrcDirectory))
246246
{
247-
Log($"Cloning branch '{Repo.ChangelogBranch}' from '{Repo.HttpsGitUrl}' to '{SrcDirectory}'.");
248-
context.GitRunner.Clone(SrcDirectory, Repo.HttpsGitUrl, Repo.ChangelogBranch);
247+
Log($"Cloning branch '{Repo.ChangelogBranch}' from '{Repo.SshGitUrl}' to '{SrcDirectory}'.");
248+
context.GitRunner.Clone(SrcDirectory, Repo.SshGitUrl, Repo.ChangelogBranch);
249249
Log($"Clone completed: '{Repo.ChangelogBranch}' -> '{SrcDirectory}'.");
250250
}
251251
else

build/common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
</PropertyGroup>
4646

4747
<PropertyGroup Condition=" '$(VersionPrefix)' == '' ">
48-
<VersionPrefix>0.15.4</VersionPrefix>
48+
<VersionPrefix>0.15.5</VersionPrefix>
4949
</PropertyGroup>
5050

5151
<PropertyGroup Condition=" '$(NoVersionSuffix)' == '' AND '$(VersionSuffix)' == '' ">

build/versions.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,5 @@
6262
0.15.1
6363
0.15.2
6464
0.15.3
65-
0.15.4
65+
0.15.4
66+
0.15.5

templates/templates/BenchmarkDotNet.BenchmarkProjectTemplate.CSharp/.template.config/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139
"type": "parameter",
140140
"datatype": "string",
141141
"description": "Version of BenchmarkDotNet that will be referenced.",
142-
"defaultValue": "0.15.4",
142+
"defaultValue": "0.15.5",
143143
"replaces": "$(BenchmarkDotNetVersion)"
144144
}
145145
},

templates/templates/BenchmarkDotNet.BenchmarkProjectTemplate.FSharp/.template.config/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139
"type": "parameter",
140140
"datatype": "string",
141141
"description": "Version of BenchmarkDotNet that will be referenced.",
142-
"defaultValue": "0.15.4",
142+
"defaultValue": "0.15.5",
143143
"replaces": "$(BenchmarkDotNetVersion)"
144144
}
145145
},

templates/templates/BenchmarkDotNet.BenchmarkProjectTemplate.VB/.template.config/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139
"type": "parameter",
140140
"datatype": "string",
141141
"description": "Version of BenchmarkDotNet that will be referenced.",
142-
"defaultValue": "0.15.4",
142+
"defaultValue": "0.15.5",
143143
"replaces": "$(BenchmarkDotNetVersion)"
144144
}
145145
},

0 commit comments

Comments
 (0)