Skip to content

Commit 27a6739

Browse files
committed
1.5.50
1 parent 511540a commit 27a6739

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 1.5.50 (12 March 2024)
2+
- [#1080](https://github.com/WireMock-Net/WireMock.Net/pull/1080) - Fix FluentAssertions on Header(s) [bug] contributed by [StefH](https://github.com/StefH)
3+
- [#1082](https://github.com/WireMock-Net/WireMock.Net/pull/1082) - Make WireMockAssertions extendable [feature] contributed by [StefH](https://github.com/StefH)
4+
- [#1074](https://github.com/WireMock-Net/WireMock.Net/issues/1074) - FluentAssertions extensions do not filter headers correctly [bug]
5+
- [#1075](https://github.com/WireMock-Net/WireMock.Net/issues/1075) - FluentAssertions extensions are not open for extension [feature]
6+
17
# 1.5.49 (06 March 2024)
28
- [#1069](https://github.com/WireMock-Net/WireMock.Net/pull/1069) - Extend TypeLoader [feature] contributed by [StefH](https://github.com/StefH)
39
- [#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)

Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
</PropertyGroup>
55

66
<PropertyGroup>
7-
<VersionPrefix>1.5.49</VersionPrefix>
7+
<VersionPrefix>1.5.50</VersionPrefix>
88
<PackageIcon>WireMock.Net-Logo.png</PackageIcon>
99
<PackageProjectUrl>https://github.com/WireMock-Net/WireMock.Net</PackageProjectUrl>
1010
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>

Generate-ReleaseNotes.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
rem https://github.com/StefH/GitHubReleaseNotes
22

3-
SET version=1.5.49
3+
SET version=1.5.50
44

55
GitHubReleaseNotes --output CHANGELOG.md --skip-empty-releases --exclude-labels question invalid doc duplicate example --version %version% --token %GH_TOKEN%
66

PackageReleaseNotes.txt

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# 1.5.49 (06 March 2024)
2-
- #1069 Extend TypeLoader [feature]
3-
- #1078 Upgrade ProtoBufJsonConverter to fix issue with dot(s) in package name [bug]
4-
- #1077 ProtoBufMatcher not working when proto package name contains dots [bug]
1+
# 1.5.50 (12 March 2024)
2+
- #1080 Fix FluentAssertions on Header(s) [bug]
3+
- #1082 Make WireMockAssertions extendable [feature]
4+
- #1074 FluentAssertions extensions do not filter headers correctly [bug]
5+
- #1075 FluentAssertions extensions are not open for extension [feature]
56

67
The full release notes can be found here: https://github.com/WireMock-Net/WireMock.Net/blob/master/CHANGELOG.md

test/WireMock.Net.Tests/FluentAssertions/WireMockAssertionsExtensions.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
using System.Linq;
33
using FluentAssertions;
44
using FluentAssertions.Execution;
5+
using WireMock.FluentAssertions;
56

6-
// ReSharper disable once CheckNamespace
7-
namespace WireMock.FluentAssertions;
7+
namespace WireMock.Net.Tests.FluentAssertions;
88

99
public static class WireMockAssertionsExtensions
1010
{

0 commit comments

Comments
 (0)