diff --git a/CHANGELOG.md b/CHANGELOG.md index c2c8dbd..009246a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [2.11.0] - 2026-05-14 +## What's Changed +* Update sandboxes api by @IgorDobryn in https://github.com/mailtrap/mailtrap-ruby/pull/103 +* Sending domains endpoints by @IgorDobryn in https://github.com/mailtrap/mailtrap-ruby/pull/104 +* Add contact endpoints by @IgorDobryn in https://github.com/mailtrap/mailtrap-ruby/pull/105 +* Account management API by @IgorDobryn in https://github.com/mailtrap/mailtrap-ruby/pull/106 +* Add api token endpoints by @IgorDobryn in https://github.com/mailtrap/mailtrap-ruby/pull/107 +* Add webhook endpoints by @IgorDobryn in https://github.com/mailtrap/mailtrap-ruby/pull/108 + + ## [2.10.0] - 2026-03-23 - Add Email Logs API (list and get email sending logs with filters and cursor pagination) diff --git a/Gemfile.lock b/Gemfile.lock index c70240d..21fe0a6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - mailtrap (2.10.0) + mailtrap (2.11.0) base64 GEM diff --git a/lib/mailtrap/version.rb b/lib/mailtrap/version.rb index 059ff06..a64fbf7 100644 --- a/lib/mailtrap/version.rb +++ b/lib/mailtrap/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Mailtrap - VERSION = '2.10.0' + VERSION = '2.11.0' end