diff --git a/CHANGELOG.md b/CHANGELOG.md index 875818a..45520b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## [3.2.1] - 2026-07-10 + +## What's Changed +* Release v3.2.0 by @IgorDobryn in https://github.com/mailtrap/mailtrap-dotnet/pull/241 +* MT-22022: Add webhook signature verification helper by @Rabsztok in https://github.com/mailtrap/mailtrap-dotnet/pull/242 +* Add draft-release workflow placeholder by @IgorDobryn in https://github.com/mailtrap/mailtrap-dotnet/pull/243 +* Implement draft release workflow by @IgorDobryn in https://github.com/mailtrap/mailtrap-dotnet/pull/244 + +## New Contributors +* @Rabsztok made their first contribution in https://github.com/mailtrap/mailtrap-dotnet/pull/242 + +**Full Changelog**: https://github.com/mailtrap/mailtrap-dotnet/compare/v3.2.0...v3.2.1 + ## [3.2.0] - 2026-05-14 - Add api token, webhook and sub account endpoints by @IgorDobryn in https://github.com/mailtrap/mailtrap-dotnet/pull/240 diff --git a/README.md b/README.md index 05d57ba..ab93526 100644 --- a/README.md +++ b/README.md @@ -38,13 +38,13 @@ Replace GITHUB_PAT with the personal access token that is granted at least `read Then add the Mailtrap package: ```bash -dotnet add package Mailtrap -v 3.2.0 -s github-mailtrap +dotnet add package Mailtrap -v 3.2.1 -s github-mailtrap ``` Optionally, you can add the Mailtrap.Abstractions package: ```bash -dotnet add package Mailtrap.Abstractions -v 3.2.0 -s github-mailtrap +dotnet add package Mailtrap.Abstractions -v 3.2.1 -s github-mailtrap ``` ---