diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 27d79303f..26443d0ae 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.46.0 +current_version = 4.47.0 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96797d244..de1dba967 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [4.47.0](https://github.com/recurly/recurly-client-ruby/tree/4.47.0) (2024-02-20) + +[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.46.0...4.47.0) + + +**Merged Pull Requests** + +- Add invoice state param for v2021-02-25 [#887](https://github.com/recurly/recurly-client-ruby/pull/887) ([recurly-integrations](https://github.com/recurly-integrations)) +- Remove internal wiki link. [#882](https://github.com/recurly/recurly-client-ruby/pull/882) ([recurly-bearley](https://github.com/recurly-bearley)) + + + ## [4.46.0](https://github.com/recurly/recurly-client-ruby/tree/4.46.0) (2024-01-24) [Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.45.0...4.46.0) diff --git a/GETTING_STARTED.md b/GETTING_STARTED.md index b0285a714..9e64fd6a4 100644 --- a/GETTING_STARTED.md +++ b/GETTING_STARTED.md @@ -5,7 +5,7 @@ This repository houses the official ruby client for Recurly's V3 API. In your Gemfile, add `recurly` as a dependency. ```ruby -gem 'recurly', '~> 4.46' +gem 'recurly', '~> 4.47' ``` > *Note*: We try to follow [semantic versioning](https://semver.org/) and will only apply breaking changes to major versions. diff --git a/lib/recurly/version.rb b/lib/recurly/version.rb index de9858cf8..d68a122cc 100644 --- a/lib/recurly/version.rb +++ b/lib/recurly/version.rb @@ -1,3 +1,3 @@ module Recurly - VERSION = "4.46.0" + VERSION = "4.47.0" end