Skip to content

Commit

Permalink
bump to 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
GJJ2019 committed Jul 10, 2023
1 parent c96ca36 commit eca9d63
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.5

- fixing #23
- changing transaction_details_model
## 0.1.4

- updating packages to latest
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Add the plugin package to the `pubspec.yaml` file in your project:

```yaml
dependencies:
easy_upi_payment: ^0.1.0
easy_upi_payment: ^0.1.5
```
Install the new dependency:
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.1.4"
version: "0.1.5"
fake_async:
dependency: transitive
description:
Expand Down
10 changes: 5 additions & 5 deletions lib/src/model/transaction_detail_model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ class TransactionDetailModel {

factory TransactionDetailModel.fromMap(Map data) {
return TransactionDetailModel(
transactionId: data['transactionId'] as String,
responseCode: data['responseCode'] as String,
approvalRefNo: data['approvalRefNo'] as String,
transactionRefId: data['transactionRefId'] as String,
amount: data['amount'] as String,
transactionId: data['transactionId'] as String?,
responseCode: data['responseCode'] as String?,
approvalRefNo: data['approvalRefNo'] as String?,
transactionRefId: data['transactionRefId'] as String?,
amount: data['amount'] as String?,
);
}

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: easy_upi_payment
description: A new flutter plugin to make upi payment with ease currently only supported by Android (only for India).
version: 0.1.4
version: 0.1.5
repository: https://github.com/GJJ2019/easy_upi_payment
issue_tracker: https://github.com/GJJ2019/easy_upi_payment/issues
homepage: https://github.com/GJJ2019/easy_upi_payment
Expand Down

0 comments on commit eca9d63

Please sign in to comment.