Skip to content

Commit 91b8662

Browse files
authored
version bump (#258)
1 parent 6fa5fe2 commit 91b8662

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. The format
44

55
## Unreleased
66

7+
## [1.4.1][1.4.1] - 2023-08-03
8+
9+
feat: Added new API endpoints.
10+
11+
Added account onboarding API (create, fetch, edit, delete)
12+
Added stakeholders API (create, fetch, all, edit)
13+
Added product configuration API (requestProductConfiguration, fetch, edit, fetchTnc)
14+
Added webhooks API (create, fetch, all, edit, delete)
15+
Added token sharing API (create, fetchToken, deleteToken, processPaymentOnAlternatePAorPG)
16+
Added Documents API (uploadAccountDoc(, fetchAccountDoc, uploadStakeholderDoc, fetchStakeholderDoc)
17+
718
## [1.3.1][1.3.1] - 2022-07-01
819

920
- Added Third party validation & Otp API for Payment (createUpi, validateVpa, otpGenerate, otpSubmit, otpResend)

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Razorpay Python Client
22

3-
[![PyPI Version](https://img.shields.io/pypi/v/razorpay.svg)](https://pypi.python.org/pypi/razorpay) [![Coverage Status](https://coveralls.io/repos/github/razorpay/razorpay-python/badge.svg?branch=master)](https://coveralls.io/github/razorpay/razorpay-python?branch=master) [![PyPI](https://img.shields.io/pypi/pyversions/razorpay.svg)]() [![License](https://img.shields.io/:license-mit-blue.svg)](https://opensource.org/licenses/MIT)
3+
[![PyPI Version](https://img.shields.io/pypi/v/razorpay.svg)](https://pypi.python.org/pypi/razorpay) [![Coverage Status](https://coveralls.io/repos/github/razorpay/razorpay-python/badge.svg?branch=master)](https://coveralls.io/github/razorpay/razorpay-python?branch=master) [![PyPI](https://img.shields.io/badge/python-3%20%7C%203.4%20%7C%203.5%20%7C%203.6-blue.svg)]() [![License](https://img.shields.io/:license-mit-blue.svg)](https://opensource.org/licenses/MIT)
44

55
Python bindings for interacting with the Razorpay API
66

@@ -35,6 +35,8 @@ For example, you can set the title to `Django` and version to `1.8.17`. Please e
3535
that both app title and version are strings.
3636

3737
## Supported Resources
38+
- [Account](documents/account.md)
39+
3840
- [Addon](documents/addon.md)
3941

4042
- [Item](documents/items.md)
@@ -78,6 +80,12 @@ that both app title and version are strings.
7880
- [Register NACH and Charge First Payment Together](documents/registerNach.md)
7981

8082
- [Payment Verification](documents/paymentVerfication.md)
83+
84+
- [Product Configuration](documents/productConfiguration.md)
85+
86+
- [Stakeholder](documents/stakeholder.md)
87+
88+
- [Webhook](documents/webhook.md)
8189
---
8290

8391
## Bugs? Feature requests? Pull requests?

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="razorpay",
8-
version="1.3.1",
8+
version="1.4.1",
99
description="Razorpay Python Client",
1010
long_description=readme_content,
1111
long_description_content_type='text/markdown',
@@ -25,8 +25,6 @@
2525
# List of supported Python versions
2626
# Make sure that this is reflected in .github/workflows/python.yml as well
2727
"Programming Language :: Python",
28-
'Programming Language :: Python :: 2',
29-
'Programming Language :: Python :: 2.7',
3028
'Programming Language :: Python :: 3',
3129
'Programming Language :: Python :: 3.4',
3230
'Programming Language :: Python :: 3.5',

tests/test_client_virtual_account.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,4 +163,3 @@ def test_virtual_delete_allowed_player(self):
163163
self.fake_virtual_account_id, 'fake_allowed_player_id');
164164
self.assertEqual(response, result)
165165

166-

0 commit comments

Comments
 (0)