Skip to content

Commit dc7734d

Browse files
Postrelease v0.13.3 update
1 parent 0714f5f commit dc7734d

File tree

5 files changed

+48
-38
lines changed

5 files changed

+48
-38
lines changed

build/Program.cs

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -280,10 +280,11 @@ public static class DocumentationHelper
280280
"v0.12.1",
281281
"v0.13.0",
282282
"v0.13.1",
283-
"v0.13.2"
283+
"v0.13.2",
284+
"v0.13.3"
284285
};
285286

286-
public const string BdnNextVersion = "v0.13.3";
287+
public const string BdnNextVersion = "v0.13.4";
287288
public const string BdnFirstCommit = "6eda98ab1e83a0d185d09ff8b24c795711af8db1";
288289
}
289290

@@ -445,29 +446,30 @@ public class DocFxChangelogDownloadTask : FrostingTask<BuildContext>
445446
{
446447
public override void Run(BuildContext context)
447448
{
448-
if (context.Argument("AllVersions", false))
449-
{
450-
context.DocfxChangelogDownload(
451-
DocumentationHelper.BdnAllVersions.First(),
452-
DocumentationHelper.BdnFirstCommit);
453-
454-
for (int i = 1; i < DocumentationHelper.BdnAllVersions.Length; i++)
455-
context.DocfxChangelogDownload(
456-
DocumentationHelper.BdnAllVersions[i],
457-
DocumentationHelper.BdnAllVersions[i - 1]);
458-
} else if (context.Argument("LatestVersions", false))
459-
{
460-
for (int i = DocumentationHelper.BdnAllVersions.Length - 2; i < DocumentationHelper.BdnAllVersions.Length; i++)
461-
context.DocfxChangelogDownload(
462-
DocumentationHelper.BdnAllVersions[i],
463-
DocumentationHelper.BdnAllVersions[i - 1]);
464-
}
465-
466-
if (!context.Argument("StableVersions", false))
449+
// if (context.Argument("AllVersions", false))
450+
// {
451+
// context.DocfxChangelogDownload(
452+
// DocumentationHelper.BdnAllVersions.First(),
453+
// DocumentationHelper.BdnFirstCommit);
454+
//
455+
// for (int i = 1; i < DocumentationHelper.BdnAllVersions.Length; i++)
456+
// context.DocfxChangelogDownload(
457+
// DocumentationHelper.BdnAllVersions[i],
458+
// DocumentationHelper.BdnAllVersions[i - 1]);
459+
// } else if (context.Argument("LatestVersions", false))
460+
// {
461+
// }
462+
//
463+
// if (!context.Argument("StableVersions", false))
464+
// context.DocfxChangelogDownload(
465+
// DocumentationHelper.BdnNextVersion,
466+
// DocumentationHelper.BdnAllVersions.Last(),
467+
// "HEAD");
468+
469+
for (int i = DocumentationHelper.BdnAllVersions.Length - 3; i < DocumentationHelper.BdnAllVersions.Length; i++)
467470
context.DocfxChangelogDownload(
468-
DocumentationHelper.BdnNextVersion,
469-
DocumentationHelper.BdnAllVersions.Last(),
470-
"HEAD");
471+
DocumentationHelper.BdnAllVersions[i],
472+
DocumentationHelper.BdnAllVersions[i - 1]);
471473
}
472474
}
473475

docs/_changelog/details/v0.13.1.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
## Milestone details
22

33
In the [v0.13.1](https://github.com/dotnet/BenchmarkDotNet/issues?q=milestone:v0.13.1) scope,
4-
3 issues were resolved and 22 pull requests were merged.
5-
This release includes 36 commits by 10 contributors.
4+
3 issues were resolved and 23 pull requests were merged.
5+
This release includes 36 commits by 9 contributors.
66

77
## Resolved issues (3)
88

99
* [#1703](https://github.com/dotnet/BenchmarkDotNet/issues/1703) Unable to run benchmark when `ParamsSource` refers to string with surrogate pairs
1010
* [#1713](https://github.com/dotnet/BenchmarkDotNet/issues/1713) System.NotSupportedException: Unknown Acknowledgment: Acknowledgment when running in a github action (assignee: [@adamsitnik](https://github.com/adamsitnik))
1111
* [#1714](https://github.com/dotnet/BenchmarkDotNet/issues/1714) AwaitingTasksShouldNotInterfereAllocationResults is flaky (assignee: [@adamsitnik](https://github.com/adamsitnik))
1212

13-
## Merged pull requests (22)
13+
## Merged pull requests (23)
1414

1515
* [#1705](https://github.com/dotnet/BenchmarkDotNet/pull/1705) do not split surrogates in `ParameterInstance.ToDisplayText()` (by [@novak-as](https://github.com/novak-as))
1616
* [#1710](https://github.com/dotnet/BenchmarkDotNet/pull/1710) Fix typo (by [@martincostello](https://github.com/martincostello))
@@ -20,6 +20,7 @@ This release includes 36 commits by 10 contributors.
2020
* [#1725](https://github.com/dotnet/BenchmarkDotNet/pull/1725) Add ValidateExecutableReferencesMatchSelfContained (by [@kant2002](https://github.com/kant2002))
2121
* [#1729](https://github.com/dotnet/BenchmarkDotNet/pull/1729) Naricc/validate executable references match self contained (by [@naricc](https://github.com/naricc))
2222
* [#1735](https://github.com/dotnet/BenchmarkDotNet/pull/1735) Use Utf8 not just for writing to standard output, but also for reading from standard input (by [@adamsitnik](https://github.com/adamsitnik))
23+
* [#1739](https://github.com/dotnet/BenchmarkDotNet/pull/1739) Add support for returning unmanaged types from benchmarks (by [@kant2002](https://github.com/kant2002))
2324
* [#1742](https://github.com/dotnet/BenchmarkDotNet/pull/1742) Fix WasmAssembliesToBundle item is empty error (by [@radekdoulik](https://github.com/radekdoulik))
2425
* [#1743](https://github.com/dotnet/BenchmarkDotNet/pull/1743) Add linker description for wasm AOT (by [@radekdoulik](https://github.com/radekdoulik))
2526
* [#1744](https://github.com/dotnet/BenchmarkDotNet/pull/1744) Make mono/wasm run on Windows (by [@radekdoulik](https://github.com/radekdoulik))
@@ -62,7 +63,7 @@ This release includes 36 commits by 10 contributors.
6263
* [c3fb7b](https://github.com/dotnet/BenchmarkDotNet/commit/c3fb7b9724a62048d27ef5bcaec616117d68b934) Add support for returning unmanaged types from benchmarks (#1739) (by [@kant2002](https://github.com/kant2002))
6364
* [6f453b](https://github.com/dotnet/BenchmarkDotNet/commit/6f453baafa4ef800e0377ebc463ffa82b2f76368) [wasm] Allow unsafe code (#1752) (by [@radekdoulik](https://github.com/radekdoulik))
6465
* [c2cee2](https://github.com/dotnet/BenchmarkDotNet/commit/c2cee254b3a9aec3a6b73bc7fd21b7f2f70ca2ec) Fix the CI (by [@radekdoulik](https://github.com/radekdoulik))
65-
* [19cbef](https://github.com/dotnet/BenchmarkDotNet/commit/19cbef28cba94cd4a7da6266b839d4d3fe2f14db) Fix typo in docs (#1748) (by [@Jlobblet](https://github.com/Jlobblet))
66+
* [19cbef](https://github.com/dotnet/BenchmarkDotNet/commit/19cbef28cba94cd4a7da6266b839d4d3fe2f14db) Fix typo in docs (#1748) (by John Blundell)
6667
* [1a94d4](https://github.com/dotnet/BenchmarkDotNet/commit/1a94d4dfa65f975f49d1bc92ced5c7a45bb994d4) [wasm] Add WasmMainJSPath in interpreter projects (#1757) (by [@radekdoulik](https://github.com/radekdoulik))
6768
* [37ec19](https://github.com/dotnet/BenchmarkDotNet/commit/37ec19f6dba9ccee6a8f776aa3020ca189944f0c) Get rid of warning (#1760) (by [@radekdoulik](https://github.com/radekdoulik))
6869
* [4bd433](https://github.com/dotnet/BenchmarkDotNet/commit/4bd433d85fff4fb6ba8c4f8df3e685ad669e2519) use benchmark process runtime, not host process runtime when deciding whether... (by [@adamsitnik](https://github.com/adamsitnik))
@@ -74,14 +75,13 @@ This release includes 36 commits by 10 contributors.
7475
* [708be4](https://github.com/dotnet/BenchmarkDotNet/commit/708be495530a968ed767a20f4623f54231d1ab9b) Prepare v0.13.1 changelog (by [@AndreyAkinshin](https://github.com/AndreyAkinshin))
7576
* [a93681](https://github.com/dotnet/BenchmarkDotNet/commit/a936815f2a58d9b728cfc5fe620bba17481c180c) Set library version: 0.13.1 (by [@AndreyAkinshin](https://github.com/AndreyAkinshin))
7677

77-
## Contributors (10)
78+
## Contributors (9)
7879

7980
* Adam Sitnik ([@adamsitnik](https://github.com/adamsitnik))
8081
* Andrey Akinshin ([@AndreyAkinshin](https://github.com/AndreyAkinshin))
8182
* Andrii Kurdiumov ([@kant2002](https://github.com/kant2002))
82-
* Chris Granade ([@cgranade](https://github.com/cgranade))
83-
* Evgeny Grebenyuk ([@eugene-g](https://github.com/eugene-g))
84-
* John Blundell ([@Jlobblet](https://github.com/Jlobblet))
83+
* Cassandra Granade ([@cgranade](https://github.com/cgranade))
84+
* Evgenii Grebeniuk ([@eugene-g](https://github.com/eugene-g))
8585
* Martin Costello ([@martincostello](https://github.com/martincostello))
8686
* Nathan Ricci ([@naricc](https://github.com/naricc))
8787
* Oleksandr Novak ([@novak-as](https://github.com/novak-as))

docs/_changelog/details/v0.13.2.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
11
## Milestone details
22

33
In the [v0.13.2](https://github.com/dotnet/BenchmarkDotNet/issues?q=milestone:v0.13.2) scope,
4-
44 issues were resolved and 124 pull requests were merged.
4+
50 issues were resolved and 124 pull requests were merged.
55
This release includes 147 commits by 34 contributors.
66

7-
## Resolved issues (44)
7+
## Resolved issues (50)
88

99
* [#299](https://github.com/dotnet/BenchmarkDotNet/issues/299) Add API to remove columns for baseline comparison (assignee: [@AndreyAkinshin](https://github.com/AndreyAkinshin))
10+
* [#384](https://github.com/dotnet/BenchmarkDotNet/issues/384) Print Vector<byte>.Count as part of machine info (assignee: [@adamsitnik](https://github.com/adamsitnik))
1011
* [#722](https://github.com/dotnet/BenchmarkDotNet/issues/722) Add scaled column for Allocated Memory
12+
* [#837](https://github.com/dotnet/BenchmarkDotNet/issues/837) Problems with default UnrollFactor in V0.11.0 (assignee: [@adamsitnik](https://github.com/adamsitnik))
1113
* [#1177](https://github.com/dotnet/BenchmarkDotNet/issues/1177) Public types missing from reference assemblies don't work with ParamsSource
1214
* [#1506](https://github.com/dotnet/BenchmarkDotNet/issues/1506) BenchmarkDotNet does not force to High Performance Mode during running (assignee: [@YegorStepanov](https://github.com/YegorStepanov))
1315
* [#1603](https://github.com/dotnet/BenchmarkDotNet/issues/1603) Don't display Job and Toolchain column when running benchmarks for multiple runtimes
1416
* [#1669](https://github.com/dotnet/BenchmarkDotNet/issues/1669) --buildTimeout does not seem to work (assignee: [@adamsitnik](https://github.com/adamsitnik))
1517
* [#1680](https://github.com/dotnet/BenchmarkDotNet/issues/1680) Cannot override RD.xml for NativeAOT
16-
* [#1700](https://github.com/dotnet/BenchmarkDotNet/issues/1700) [Bug] Not unique exporter for exporter type
1718
* [#1711](https://github.com/dotnet/BenchmarkDotNet/issues/1711) Add support for IBM Z architecture (assignee: [@adamsitnik](https://github.com/adamsitnik))
1819
* [#1727](https://github.com/dotnet/BenchmarkDotNet/issues/1727) Unhelpful rounding in MemoryDiagnoser
1920
* [#1753](https://github.com/dotnet/BenchmarkDotNet/issues/1753) "call: command not found" in .sh build script (assignee: [@AndreyAkinshin](https://github.com/AndreyAkinshin))
21+
* [#1755](https://github.com/dotnet/BenchmarkDotNet/issues/1755) EventPipeProfiler: File names are very verbose
2022
* [#1756](https://github.com/dotnet/BenchmarkDotNet/issues/1756) EventPipeProfile: speedscope.app cannot parse result file (assignee: [@adamsitnik](https://github.com/adamsitnik))
2123
* [#1774](https://github.com/dotnet/BenchmarkDotNet/issues/1774) Ability to compare --corerun with --runtimes (assignee: [@adamsitnik](https://github.com/adamsitnik))
2224
* [#1775](https://github.com/dotnet/BenchmarkDotNet/issues/1775) Please add an easy way to remove columns
@@ -27,6 +29,7 @@ This release includes 147 commits by 34 contributors.
2729
* [#1809](https://github.com/dotnet/BenchmarkDotNet/issues/1809) Exception when using ParamsSource with (null) objects
2830
* [#1812](https://github.com/dotnet/BenchmarkDotNet/issues/1812) Invalid codegen for Enumerable.Empty returned from ParamsSource
2931
* [#1819](https://github.com/dotnet/BenchmarkDotNet/issues/1819) How to change exporter output path?
32+
* [#1836](https://github.com/dotnet/BenchmarkDotNet/issues/1836) [Bug] `System.InvalidOperationException: There is an error in XML document (0, 0).`
3033
* [#1857](https://github.com/dotnet/BenchmarkDotNet/issues/1857) Github actions ubuntu-latest "Unable to load shared library 'advapi32.dll' or one of its dependencies" when profiling dotnet 5
3134
* [#1864](https://github.com/dotnet/BenchmarkDotNet/issues/1864) Is there a way to join summaries as if the benchmarks were run separately? (assignee: [@AndreyAkinshin](https://github.com/AndreyAkinshin))
3235
* [#1871](https://github.com/dotnet/BenchmarkDotNet/issues/1871) Detect ReSharper's Dynamic Program Analysis (assignee: [@adamsitnik](https://github.com/adamsitnik))
@@ -38,7 +41,10 @@ This release includes 147 commits by 34 contributors.
3841
* [#1934](https://github.com/dotnet/BenchmarkDotNet/issues/1934) Ensure WorkloadActionUnroll and similar are optimized if possible
3942
* [#1937](https://github.com/dotnet/BenchmarkDotNet/issues/1937) PR builds should not be published to BDN nightly feed (assignee: [@mawosoft](https://github.com/mawosoft))
4043
* [#1943](https://github.com/dotnet/BenchmarkDotNet/issues/1943) GitHub Actions Windows CI leg failing due to lack of native tools (assignee: [@adamsitnik](https://github.com/adamsitnik))
44+
* [#1948](https://github.com/dotnet/BenchmarkDotNet/issues/1948) questions to help with future PRs
4145
* [#1957](https://github.com/dotnet/BenchmarkDotNet/issues/1957) Broken pipe (assignee: [@adamsitnik](https://github.com/adamsitnik))
46+
* [#1977](https://github.com/dotnet/BenchmarkDotNet/issues/1977) More Data for JSON and XML Export
47+
* [#1989](https://github.com/dotnet/BenchmarkDotNet/issues/1989) Way to summarize all the params results (assignee: [@YegorStepanov](https://github.com/YegorStepanov))
4248
* [#1992](https://github.com/dotnet/BenchmarkDotNet/issues/1992) API Docs on website empty (assignee: [@AndreyAkinshin](https://github.com/AndreyAkinshin))
4349
* [#2000](https://github.com/dotnet/BenchmarkDotNet/issues/2000) DisassemblyDiagnoser broken on Linux (assignee: [@adamsitnik](https://github.com/adamsitnik))
4450
* [#2009](https://github.com/dotnet/BenchmarkDotNet/issues/2009) Cleanup the dependencies (assignee: [@martincostello](https://github.com/martincostello))

docs/_changelog/details/v0.13.3.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
In the [v0.13.3](https://github.com/dotnet/BenchmarkDotNet/issues?q=milestone:v0.13.3) scope,
44
29 issues were resolved and 72 pull requests were merged.
5-
This release includes 85 commits by 22 contributors.
5+
This release includes 87 commits by 22 contributors.
66

77
## Resolved issues (29)
88

@@ -111,7 +111,7 @@ This release includes 85 commits by 22 contributors.
111111
* [#2234](https://github.com/dotnet/BenchmarkDotNet/pull/2234) Disassembler realiability fixes (by [@adamsitnik](https://github.com/adamsitnik))
112112
* [#2235](https://github.com/dotnet/BenchmarkDotNet/pull/2235) tests can't assume x64 hardware (by [@adamsitnik](https://github.com/adamsitnik))
113113

114-
## Commits (85)
114+
## Commits (87)
115115

116116
* [33b288](https://github.com/dotnet/BenchmarkDotNet/commit/33b288ff2918d31c461f0de64908f99e24a4b45e) Use latest AzDO macOS pool (#2085) (by [@adamsitnik](https://github.com/adamsitnik))
117117
* [83750b](https://github.com/dotnet/BenchmarkDotNet/commit/83750baceb71cb0c81a01145a5872b63bc7db858) Postrelease v0.13.2 update (by [@AndreyAkinshin](https://github.com/AndreyAkinshin))
@@ -198,6 +198,8 @@ This release includes 85 commits by 22 contributors.
198198
* [82f03f](https://github.com/dotnet/BenchmarkDotNet/commit/82f03f4d4222dfcf4e19e1f32a47867342a680d1) Add support for .NET SDK that uses Mono instead CLR as a default VM (#2230) (by [@adamsitnik](https://github.com/adamsitnik))
199199
* [968448](https://github.com/dotnet/BenchmarkDotNet/commit/96844853b8c15eeed65ef8349aa9dbe47fb05248) Disassembler realiability fixes (#2234) (by [@adamsitnik](https://github.com/adamsitnik))
200200
* [a098bc](https://github.com/dotnet/BenchmarkDotNet/commit/a098bc1761c9157dbca5bd10ef6d08840620136e) tests can't assume x64 hardware (#2235) (by [@adamsitnik](https://github.com/adamsitnik))
201+
* [2665ac](https://github.com/dotnet/BenchmarkDotNet/commit/2665ac7c38f3edecbd7f593f25941eb613cbd779) Prepare v0.13.3 changelog (by [@AndreyAkinshin](https://github.com/AndreyAkinshin))
202+
* [0714f5](https://github.com/dotnet/BenchmarkDotNet/commit/0714f5f4a97bc74ff0ac5860525527c8e8825205) Set library version: 0.13.3 (by [@AndreyAkinshin](https://github.com/AndreyAkinshin))
201203

202204
## Contributors (22)
203205

docs/_changelog/footer/v0.13.3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_Date: TBA_
1+
_Date: December 26, 2022_
22

33
_Milestone: [v0.13.3](https://github.com/dotnet/BenchmarkDotNet/issues?q=milestone%3Av0.13.3)_
44
([List of commits](https://github.com/dotnet/BenchmarkDotNet/compare/v0.13.2...v0.13.3))

0 commit comments

Comments
 (0)