Skip to content

Commit

Permalink
Merge pull request #272 from razorpay/version_bump
Browse files Browse the repository at this point in the history
update version bump and changelog
  • Loading branch information
ankitdas13 committed Nov 8, 2021
2 parents 11040aa + 617f064 commit 4ad7b6a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ Changelog for Razorpay-PHP SDK. Follows [keepachangelog.com](https://keepachange

## Unreleased

## [2.8.1] - 2021-11-08

### Added

- Added Item Api
- Added Unit Tests

## [2.8.0][2.8.0] - 2021-10-07

### Added
Expand Down Expand Up @@ -201,3 +208,4 @@ Changelog for Razorpay-PHP SDK. Follows [keepachangelog.com](https://keepachange
[2.4.0-beta]: https://github.com/razorpay/razorpay-php/compare/2.3.0...2.4.0-beta
[2.5.0]: https://github.com/razorpay/razorpay-php/compare/2.4.0-beta...2.5.0
[2.8.0]: https://github.com/razorpay/razorpay-php/compare/2.7.1...2.8.0
[2.8.1]: https://github.com/razorpay/razorpay-php/compare/2.8.0...2.8.1
4 changes: 2 additions & 2 deletions documents/payment.md
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ $api->payment->createPaymentJson(array('amount' => 100,'currency' => 'INR','emai
### OTP Generate

```php
$api->payment->fetch($paymenmtId)->otpGenerate();
$api->payment->fetch($paymentId)->otpGenerate();
```

**Parameters:**
Expand Down Expand Up @@ -447,7 +447,7 @@ $api->payment->fetch($paymenmtId)->otpGenerate();
### OTP Submit

```php
$api->payment->fetch($paymenmtId)->otpSubmit(array('otp'=> '12345'));
$api->payment->fetch($paymentId)->otpSubmit(array('otp'=> '12345'));
```

**Parameters:**
Expand Down
2 changes: 1 addition & 1 deletion src/Api.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Api
*/
public static $appsDetails = array();

const VERSION = '2.8.0';
const VERSION = '2.8.1';

/**
* @param string $key
Expand Down

0 comments on commit 4ad7b6a

Please sign in to comment.