diff --git a/CHANGELOG.md b/CHANGELOG.md index 4de9043..6852beb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ Changelog for Razorpay-Ruby SDK. ## Unreleased +## [3.2.3] - 2024-05-27 + +feat: Added new API endpoints +* Added support for `add_bank_account`, `delete_bank_account`, `request_eligibility_check` & `fetch_eligibility` on customer +* Added support for `expand_details` on payment +* Added support for fetch Reversals for a Transfer +* Added support for Dispute +* Added support for Document +* Added support for `view_rto` & `edit_fulfillment` on order + ## [3.2.2] - 2024-04-16 feat: Added oauth APIs and support for access token based authentication mechanism diff --git a/README.md b/README.md index 519a0a9..f16967d 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,8 @@ If you are using rails, the right place to do this might be `config/initializers - [Payment Verification](documents/paymentVerification.md) - [Webhook](documents/webhook.md) - [OAuthToken](documents/oauth_token.md) +- [Dispute](documents/dispute.md) +- [Document](documents/documents.md) ## Development diff --git a/lib/razorpay/constants.rb b/lib/razorpay/constants.rb index a3bec21..4822833 100644 --- a/lib/razorpay/constants.rb +++ b/lib/razorpay/constants.rb @@ -2,7 +2,7 @@ module Razorpay BASE_URI = 'https://api.razorpay.com'.freeze TEST_URL = 'https://api.razorpay.com/'.freeze - VERSION = '3.2.2'.freeze + VERSION = '3.2.3'.freeze AUTH_URL = 'https://auth.razorpay.com'.freeze API_HOST = 'API'.freeze AUTH_HOST = 'AUTH'.freeze