Skip to content

Commit 10c5e84

Browse files
committed
chore: updated changelog
1 parent f3f128a commit 10c5e84

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Build and Test
22

3-
on: [push]
3+
on:
4+
pull_request:
5+
branches:
6+
- 'master'
7+
48
jobs:
59
build-and-test:
610
name: build-and-test

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.0.7
2+
* Fixed an issue where only one bank showed-up in the banks dropdown
3+
* Fixed build issues caused by androidx material library
4+
* Fixed build issues caused by using the wrong android `compileSdkVersion`
5+
16
## 1.0.6
27
* Completed migration for Android v2 embedding.
38
* Fixed colour issues in dark mode

pubspec.yaml

Lines changed: 1 addition & 1 deletion
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.6
3+
version: 1.0.7
44
homepage: https://github.com/wilburt/flutter_paystack
55

66
dependencies:

test/src/common/card_utils_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ void main() {
8585
Case(inp: [1994, 1], out: true),
8686
Case(inp: [1, 1], out: true),
8787
Case(inp: [-203, -13], out: true),
88-
Case(inp: [22, 10], out: false),
88+
Case(inp: [23, 10], out: false),
8989
Case(inp: [2027, 05], out: false),
9090
Case(inp: [null, 05], out: true),
9191
Case(inp: [24, null], out: true),
@@ -126,7 +126,7 @@ void main() {
126126
Case(inp: [1994, 1], out: false),
127127
Case(inp: [1, 1], out: false),
128128
Case(inp: [-203, -13], out: false),
129-
Case(inp: [22, 10], out: true),
129+
Case(inp: [24, 10], out: true),
130130
Case(inp: [2027, 05], out: true),
131131
Case(inp: [24, null], out: false),
132132
Case(inp: [null, null], out: false),

0 commit comments

Comments
 (0)