diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a582dc9a..cafc45179 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 1.5.50 (12 March 2024) +- [#1080](https://github.com/WireMock-Net/WireMock.Net/pull/1080) - Fix FluentAssertions on Header(s) [bug] contributed by [StefH](https://github.com/StefH) +- [#1082](https://github.com/WireMock-Net/WireMock.Net/pull/1082) - Make WireMockAssertions extendable [feature] contributed by [StefH](https://github.com/StefH) +- [#1074](https://github.com/WireMock-Net/WireMock.Net/issues/1074) - FluentAssertions extensions do not filter headers correctly [bug] +- [#1075](https://github.com/WireMock-Net/WireMock.Net/issues/1075) - FluentAssertions extensions are not open for extension [feature] + # 1.5.49 (06 March 2024) - [#1069](https://github.com/WireMock-Net/WireMock.Net/pull/1069) - Extend TypeLoader [feature] contributed by [StefH](https://github.com/StefH) - [#1078](https://github.com/WireMock-Net/WireMock.Net/pull/1078) - Upgrade ProtoBufJsonConverter to fix issue with dot(s) in package name [bug] contributed by [StefH](https://github.com/StefH) diff --git a/Directory.Build.props b/Directory.Build.props index dc122f7e1..24f442dce 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -4,7 +4,7 @@ - 1.5.49 + 1.5.50 WireMock.Net-Logo.png https://github.com/WireMock-Net/WireMock.Net Apache-2.0 diff --git a/Generate-ReleaseNotes.cmd b/Generate-ReleaseNotes.cmd index 0c091b231..afc3cd679 100644 --- a/Generate-ReleaseNotes.cmd +++ b/Generate-ReleaseNotes.cmd @@ -1,6 +1,6 @@ rem https://github.com/StefH/GitHubReleaseNotes -SET version=1.5.49 +SET version=1.5.50 GitHubReleaseNotes --output CHANGELOG.md --skip-empty-releases --exclude-labels question invalid doc duplicate example --version %version% --token %GH_TOKEN% diff --git a/PackageReleaseNotes.txt b/PackageReleaseNotes.txt index 88e6ded7e..136edd221 100644 --- a/PackageReleaseNotes.txt +++ b/PackageReleaseNotes.txt @@ -1,6 +1,7 @@ -# 1.5.49 (06 March 2024) -- #1069 Extend TypeLoader [feature] -- #1078 Upgrade ProtoBufJsonConverter to fix issue with dot(s) in package name [bug] -- #1077 ProtoBufMatcher not working when proto package name contains dots [bug] +# 1.5.50 (12 March 2024) +- #1080 Fix FluentAssertions on Header(s) [bug] +- #1082 Make WireMockAssertions extendable [feature] +- #1074 FluentAssertions extensions do not filter headers correctly [bug] +- #1075 FluentAssertions extensions are not open for extension [feature] The full release notes can be found here: https://github.com/WireMock-Net/WireMock.Net/blob/master/CHANGELOG.md \ No newline at end of file diff --git a/test/WireMock.Net.Tests/FluentAssertions/WireMockAssertionsExtensions.cs b/test/WireMock.Net.Tests/FluentAssertions/WireMockAssertionsExtensions.cs index 4d890d5b1..1ee9c27bd 100644 --- a/test/WireMock.Net.Tests/FluentAssertions/WireMockAssertionsExtensions.cs +++ b/test/WireMock.Net.Tests/FluentAssertions/WireMockAssertionsExtensions.cs @@ -2,9 +2,9 @@ using System.Linq; using FluentAssertions; using FluentAssertions.Execution; +using WireMock.FluentAssertions; -// ReSharper disable once CheckNamespace -namespace WireMock.FluentAssertions; +namespace WireMock.Net.Tests.FluentAssertions; public static class WireMockAssertionsExtensions {