Skip to content

Commit 2d97db0

Browse files
committed
Chnages for v1.0.1
1 parent 8f2e5ed commit 2d97db0

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1+
## 1.0.1
2+
3+
* Migrated to AndroidX
4+
* Bumped up dependencies to the latest versions
5+
* Improved month input formatter
6+
7+
18
## 1.0.0
29

310
* Reintroduced and improved bank payment
411
* Minor bug fixes
512

613
## 0.10.0 (Breaking change)
714

8-
915
* Security Improvement: Removed usage of the secret key in checkout
1016
* Removed support for bank payment (requires secret key)
1117
* Transaction initialization and verification is no longer being handled by the checkout function (requires secret key)

lib/src/widgets/common/input_formatters.dart

+3-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ class CardMonthInputFormatter extends TextInputFormatter {
2727
previousText = text;
2828
var string = buffer.toString();
2929
return newValue.copyWith(
30-
text: string, selection: new TextSelection.collapsed(offset: string.length));
30+
text: string,
31+
selection: new TextSelection.collapsed(offset: string.length));
3132
}
3233
}
3334

@@ -63,4 +64,4 @@ bool _isDeletion(String prevText, String newText) {
6364
}
6465

6566
return prevText.length > newText.length;
66-
}
67+
}

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_paystack
22
description: A Flutter plugin for making payments via Paystack Payment Gateway. Completely supports Android and iOS.
3-
version: 1.0.0
3+
version: 1.0.1
44
author: Wilberforce Uwadiegwu <[email protected]>
55
homepage: https://github.com/wilburt/flutter_paystack
66

0 commit comments

Comments
 (0)