From 764a3900d0d7245b7bad2e94c1fbad7ee6116091 Mon Sep 17 00:00:00 2001 From: Ankit Das <89454448+ankitdas13@users.noreply.github.com> Date: Tue, 19 Mar 2024 17:37:42 +0530 Subject: [PATCH] feat: Added new API endpoints (#275) --- CHANGELOG.md | 10 ++++++++++ README.md | 6 ++++++ setup.py | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64027d3d..477b1fb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. The format ## Unreleased +## [1.4.2][1.4.2] - 2024-03-19 + +feat: Added new API endpoints + +- Added support for `addBankAccount`, `deleteBankAccount`, `requestEligibilityCheck` & `fetchEligibility` on customer +- Added support for [Dispute](https://razorpay.com/docs/api/disputes/) +- Added support for [Document](https://razorpay.com/docs/api/documents/) +- Added support for fetch all IINs Supporting native otps & fetch all IINs with business sub-type using `all` +- Added support for `viewRtoReview` & `editFulfillment` on order + ## [1.4.1][1.4.1] - 2023-08-03 feat: Added new API endpoints. diff --git a/README.md b/README.md index a102b701..727ad4c9 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,12 @@ that both app title and version are strings. - [Stakeholder](documents/stakeholder.md) - [Webhook](documents/webhook.md) + +- [Document](documents/document.md) + +- [Dispute](documents/dispute.md) + +- [Iin](documents/iin.md) --- ## Bugs? Feature requests? Pull requests? diff --git a/setup.py b/setup.py index 0ae9e35f..e478f008 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="razorpay", - version="1.4.1", + version="1.4.2", description="Razorpay Python Client", long_description=readme_content, long_description_content_type='text/markdown',