Skip to content

Commit 9edfbac

Browse files
authored
bump version 2.0.0 (#313)
1 parent 5f2142b commit 9edfbac

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

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

55
## Unreleased
66

7+
## [2.0.0][2.0.0] - 2025-08-17
8+
fix: pkg_resources deprecation warning on runtime
9+
feat: Added retry mechanism for failed API calls with `enable_retry(True)` method
10+
feat: Enhanced error handling for network connectivity issues
11+
712
## [1.5.0][1.5.0] - 2024-12-19
813

914
feat: Add DeviceActivity support for POS Gateway integration
@@ -149,7 +154,12 @@ Added Documents API (uploadAccountDoc(, fetchAccountDoc, uploadStakeholderDoc, f
149154
- Payments: List, fetch and capture payments.
150155
- Refunds: List, fetch and initiate refunds.
151156

152-
[unreleased]: https://github.com/razorpay/razorpay-python/compare/1.2.0...HEAD
157+
[unreleased]: https://github.com/razorpay/razorpay-python/compare/2.0.0...HEAD
158+
[2.0.0]: https://github.com/razorpay/razorpay-python/compare/1.5.0...2.0.0
159+
[1.5.0]: https://github.com/razorpay/razorpay-python/compare/1.4.2...1.5.0
160+
[1.4.2]: https://github.com/razorpay/razorpay-python/compare/1.4.1...1.4.2
161+
[1.4.1]: https://github.com/razorpay/razorpay-python/compare/1.3.1...1.4.1
162+
[1.3.1]: https://github.com/razorpay/razorpay-python/compare/1.3.0...1.3.1
153163
[1.2.0]: https://github.com/razorpay/razorpay-python/compare/1.1.1...1.2.0
154164
[1.1.1]: https://github.com/razorpay/razorpay-python/compare/1.1.0...1.1.1
155165
[1.1.0]: https://github.com/razorpay/razorpay-python/compare/1.0.2...1.1.0

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ You can find your API keys at <https://dashboard.razorpay.com/#/app/keys>.
2020
```py
2121
import razorpay
2222
client = razorpay.Client(auth=("<YOUR_API_KEY>", "<YOUR_API_SECRET>"))
23+
24+
client.enable_retry(True) # Enable retry mechanism for failed API calls
2325
```
2426

2527
## App Details

setup.py

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

66
setup(
77
name="razorpay",
8-
version="1.5.0",
8+
version="2.0.0",
99
description="Razorpay Python Client",
1010
long_description=readme_content,
1111
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)