Skip to content

Commit

Permalink
version bump (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitdas13 authored Aug 3, 2023
1 parent 6fa5fe2 commit 91b8662
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. The format

## Unreleased

## [1.4.1][1.4.1] - 2023-08-03

feat: Added new API endpoints.

Added account onboarding API (create, fetch, edit, delete)
Added stakeholders API (create, fetch, all, edit)
Added product configuration API (requestProductConfiguration, fetch, edit, fetchTnc)
Added webhooks API (create, fetch, all, edit, delete)
Added token sharing API (create, fetchToken, deleteToken, processPaymentOnAlternatePAorPG)
Added Documents API (uploadAccountDoc(, fetchAccountDoc, uploadStakeholderDoc, fetchStakeholderDoc)

## [1.3.1][1.3.1] - 2022-07-01

- Added Third party validation & Otp API for Payment (createUpi, validateVpa, otpGenerate, otpSubmit, otpResend)
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Razorpay Python Client

[![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)
[![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)

Python bindings for interacting with the Razorpay API

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

## Supported Resources
- [Account](documents/account.md)

- [Addon](documents/addon.md)

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

- [Payment Verification](documents/paymentVerfication.md)

- [Product Configuration](documents/productConfiguration.md)

- [Stakeholder](documents/stakeholder.md)

- [Webhook](documents/webhook.md)
---

## Bugs? Feature requests? Pull requests?
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="razorpay",
version="1.3.1",
version="1.4.1",
description="Razorpay Python Client",
long_description=readme_content,
long_description_content_type='text/markdown',
Expand All @@ -25,8 +25,6 @@
# List of supported Python versions
# Make sure that this is reflected in .github/workflows/python.yml as well
"Programming Language :: Python",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
Expand Down
1 change: 0 additions & 1 deletion tests/test_client_virtual_account.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,4 +163,3 @@ def test_virtual_delete_allowed_player(self):
self.fake_virtual_account_id, 'fake_allowed_player_id');
self.assertEqual(response, result)


0 comments on commit 91b8662

Please sign in to comment.