Skip to content

Commit

Permalink
1.5.50
Browse files Browse the repository at this point in the history
  • Loading branch information
StefH committed Mar 12, 2024
1 parent 511540a commit 27a6739
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>1.5.49</VersionPrefix>
<VersionPrefix>1.5.50</VersionPrefix>
<PackageIcon>WireMock.Net-Logo.png</PackageIcon>
<PackageProjectUrl>https://github.com/WireMock-Net/WireMock.Net</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
Expand Down
2 changes: 1 addition & 1 deletion Generate-ReleaseNotes.cmd
Original file line number Diff line number Diff line change
@@ -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%

Expand Down
9 changes: 5 additions & 4 deletions PackageReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit 27a6739

Please sign in to comment.