Skip to content

Commit 104718b

Browse files
authored
Merge pull request #159 from razorpay/new_update
add gitaction
2 parents 2061013 + 3df27fd commit 104718b

File tree

88 files changed

+11598
-438
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+11598
-438
lines changed

.github/workflows/python.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# They are provided by a third-party and are governed by
2+
# separate terms of service, privacy policy, and support
3+
# documentation.
4+
5+
name: Python Package
6+
7+
on:
8+
push:
9+
branches: [ master ]
10+
pull_request:
11+
branches: [ master ]
12+
13+
14+
jobs:
15+
deploy:
16+
17+
runs-on: ubuntu-latest
18+
strategy:
19+
max-parallel: 4
20+
matrix:
21+
python-version: [3, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10]
22+
23+
steps:
24+
- uses: actions/checkout@v2
25+
- name: Set up Python
26+
uses: actions/setup-python@v2
27+
- name: Install dependencies
28+
run: |
29+
python -m pip install --upgrade pip
30+
pip install responses
31+
python3 setup.py install
32+
- name: Run Tests
33+
run: python3 -m unittest

.travis.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

CHANGELOG.md

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

55
## Unreleased
66

7+
## [1.3.0][1.3.0] - 2022-02-01
8+
9+
### Added
10+
- Added Item Api
11+
- Added RegistrationLink Api
12+
- QR code end point API
13+
- Update, cancel update ,fetch details of a Pending Update, pause, resume subscription & delete offer API
14+
- Add create ondemand , fetch all demand, fetch demand by id & report for settlement
15+
- Add/Delete TPV Bank Account
16+
- Register emandate and charge first payment together
17+
- PaperNACH/Register NACH and charge first payment together
18+
- Added create recurring payment, fetch card details, card downtime & card downtime by Id , create payment json API's for payment
19+
- Added edit and notify API's for payment links
20+
- Added edit, refund, fetch multiple refund, fetch multiple refund by id API's for refunds
21+
- Added edit order API
22+
- Fund API's end point
23+
- UPI
24+
- Added Verfiy payment link ,payment & subscription verification
25+
- Update Testcases
26+
- Update readme file
27+
728
## [1.2.0][1.2.0] - 2019-03-11
829

930
### Added

0 commit comments

Comments
 (0)