Skip to content

Commit 4fe13dd

Browse files
committed
refactor: changes for v1.0.5
1 parent 816bec9 commit 4fe13dd

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 1.0.5 (Breaking change)
2+
* Supported sound null-safety
3+
* Resolved build failure due to unresolved VERSION_NAME and VERSION_CODE
4+
* Fixed issue with dark mode (courtesy of nuelsoft)
5+
* Switched static initialization for instance initialization of the plugin
6+
* Upgraded all native and cross-platform dependencies
7+
8+
19
## 1.0.4+1
210
* Downgraded minimum Flutter version to 1.20.1
311

lib/src/common/platform_info.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class PlatformInfo {
1111
static Future<PlatformInfo> fromMethodChannel(MethodChannel channel) async {
1212
// TODO: Update for every new versions.
1313
// And there should a better way to fucking do this
14-
final pluginVersion = "2.0.4+1";
14+
final pluginVersion = "1.0.5";
1515

1616
final platform = Platform.operatingSystem;
1717
String userAgent = "${platform}_Paystack_$pluginVersion";

pubspec.yaml

Lines changed: 2 additions & 2 deletions
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: 2.0.4+1
3+
version: 1.0.5
44
author: Wilberforce Uwadiegwu <faradaywilly@gmail.com>
55
homepage: https://github.com/wilburt/flutter_paystack
66

@@ -35,4 +35,4 @@ flutter:
3535

3636
environment:
3737
sdk: '>=2.12.0 <3.0.0'
38-
flutter: ">=2.0.0 <3.0.0"
38+
flutter: ">=2.0.0"

0 commit comments

Comments
 (0)