Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for v5.2 release #791

Merged
merged 2 commits into from
Apr 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
### vNext
### 5.2.0 (Apr 2024)

* [NEW] Support for Sourcelink and Deterministic Build (#737)
* [UPDATE] Upgrade website build to jekyll 3.9.0 and add link to edit website pages (#767, #769; thanks to @brad)
* [UPDATE] Build improvements:
- migrate to GitHub Actions and update doc dependencies (#754, #774; thanks to @alexandrnikitin)
- improve test platform coverage; add .NET 8 to test platforms (#742, #756; thanks to @Romfos)
- source code format improvements; check format on CI (#758, ##761, #762, #763; thanks again to @Romfos)
* [NEW] Support for Sourcelink and Deterministic Build. Thanks @304NotModified! (#737)

Many thanks to @alexandrnikitin, @Romfos, @brad, and @304NotModified for their contributions!

### 5.1.0 (Sep 2023)

Expand Down
3 changes: 3 additions & 0 deletions acknowledgements.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ Mono is available under four open source licenses for different parts of the pro
## BenchmarkDotNet [https://github.com/dotnet/BenchmarkDotNet]
Really useful tool for benchmarking .NET code! Available for use under MIT License [https://github.com/dotnet/BenchmarkDotNet/blob/master/LICENSE.md].

## Microsoft SourceLink [https://github.com/dotnet/sourcelink]
Provides deterministic builds and source debugging for library users. Available under MIT License [https://github.com/dotnet/sourcelink/blob/main/License.txt].

# Previously used for building NSubstitute

Even though they are no longer directly used for NSubstitute, the following projects were really helpful in building previous NSubstitute versions.
Expand Down
2 changes: 1 addition & 1 deletion build/build.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<PackageReference Include="Microsoft.Build.Framework" Version="17.3.2" />
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="17.3.2" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.3.2" />
<PackageReference Include="MSBuild.StructuredLogger" Version="2.1.844" />
<PackageReference Include="MSBuild.StructuredLogger" Version="2.2.235" />
<PackageReference Include="Fake.DotNet.Cli" Version="6.0.0" />
<PackageReference Include="Fake.Tools.Git" Version="6.0.0" />
<PackageReference Include="Fake.Core.Target" Version="6.0.0" />
Expand Down
Loading