diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e4a395..a9eb33a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog +## 4.5.1 (2026-08-13) + +### Fixes + +- Fix typo in mandate_import_entry status description + ## 4.5.0 (2026-08-11) ### Features diff --git a/lib/gocardless_pro/client.rb b/lib/gocardless_pro/client.rb index 4a5496e..a8ed367 100644 --- a/lib/gocardless_pro/client.rb +++ b/lib/gocardless_pro/client.rb @@ -283,7 +283,7 @@ def default_options 'User-Agent' => "#{user_agent}", 'Content-Type' => 'application/json', 'GoCardless-Client-Library' => 'gocardless-pro-ruby', - 'GoCardless-Client-Version' => '4.5.0', + 'GoCardless-Client-Version' => '4.5.1', }, } end diff --git a/lib/gocardless_pro/version.rb b/lib/gocardless_pro/version.rb index 9a18ead..6ad43c6 100644 --- a/lib/gocardless_pro/version.rb +++ b/lib/gocardless_pro/version.rb @@ -3,5 +3,5 @@ module GoCardlessPro module GoCardlessPro # Current version of the GC gem - VERSION = '4.5.0' + VERSION = '4.5.1' end