From 06528c2f0c6fc3a14b366343847aade1b47d47ff Mon Sep 17 00:00:00 2001 From: jamiecobbett Date: Tue, 11 Aug 2026 17:57:02 +0100 Subject: [PATCH 1/2] Explicitly set release title so it matches the tag name --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c770779..3f28e20 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -102,8 +102,9 @@ jobs: GH_TOKEN: ${{ github.token }} run: | NOTES="${{ steps.notes.outputs.notes }}" + TAG="v${{ steps.version_check.outputs.version }}" if [ -n "$(echo "$NOTES" | tr -d '[:space:]')" ]; then - gh release create v${{ steps.version_check.outputs.version }} --notes "$NOTES" + gh release create "$TAG" --title "$TAG" --notes "$NOTES" else - gh release create v${{ steps.version_check.outputs.version }} --generate-notes + gh release create "$TAG" --title "$TAG" --generate-notes fi From c5ca611c4733b7e199217b89eb62dfed1a328483 Mon Sep 17 00:00:00 2001 From: "gocardless-ci-robot[bot]" <123969075+gocardless-ci-robot[bot]@users.noreply.github.com> Date: Tue, 11 Aug 2026 17:07:39 +0000 Subject: [PATCH 2/2] Changes generated by 75b61c0b06cc8eadf9d654c3d97ad3d52dfdb953 This commit was automatically created from gocardless/client-library-templates@75b61c0b06cc8eadf9d654c3d97ad3d52dfdb953 by the `push-files` action. Workflow run: https://github.com/gocardless/client-library-templates/actions/runs/31515790656 --- CHANGELOG.md | 6 ++++++ lib/gocardless_pro/client.rb | 2 +- lib/gocardless_pro/version.rb | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bef057..1e4a395 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog +## 4.5.0 (2026-08-11) + +### Features + +- Add roles attribute to the Institution resource + ## 4.4.1 Start of changelog tracking with Knope. See [GitHub releases](https://github.com/gocardless/gocardless-pro-ruby/releases) for the history of earlier versions. diff --git a/lib/gocardless_pro/client.rb b/lib/gocardless_pro/client.rb index 76a89cf..4a5496e 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.4.1', + 'GoCardless-Client-Version' => '4.5.0', }, } end diff --git a/lib/gocardless_pro/version.rb b/lib/gocardless_pro/version.rb index 1f00cdc..9a18ead 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.4.1' + VERSION = '4.5.0' end