Skip to content

Commit

Permalink
chore: updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
wilburx9 committed Jan 7, 2023
1 parent f3f128a commit 10c5e84
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
@@ -1,6 +1,10 @@
name: Build and Test

on: [push]
on:
pull_request:
branches:
- 'master'

jobs:
build-and-test:
name: build-and-test
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,8 @@
## 1.0.7
* Fixed an issue where only one bank showed-up in the banks dropdown
* Fixed build issues caused by androidx material library
* Fixed build issues caused by using the wrong android `compileSdkVersion`

## 1.0.6
* Completed migration for Android v2 embedding.
* Fixed colour issues in dark mode
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
@@ -1,6 +1,6 @@
name: flutter_paystack
description: A Flutter plugin for making payments via Paystack Payment Gateway. Completely supports Android and iOS.
version: 1.0.6
version: 1.0.7
homepage: https://github.com/wilburt/flutter_paystack

dependencies:
Expand Down
4 changes: 2 additions & 2 deletions test/src/common/card_utils_test.dart
Expand Up @@ -85,7 +85,7 @@ void main() {
Case(inp: [1994, 1], out: true),
Case(inp: [1, 1], out: true),
Case(inp: [-203, -13], out: true),
Case(inp: [22, 10], out: false),
Case(inp: [23, 10], out: false),
Case(inp: [2027, 05], out: false),
Case(inp: [null, 05], out: true),
Case(inp: [24, null], out: true),
Expand Down Expand Up @@ -126,7 +126,7 @@ void main() {
Case(inp: [1994, 1], out: false),
Case(inp: [1, 1], out: false),
Case(inp: [-203, -13], out: false),
Case(inp: [22, 10], out: true),
Case(inp: [24, 10], out: true),
Case(inp: [2027, 05], out: true),
Case(inp: [24, null], out: false),
Case(inp: [null, null], out: false),
Expand Down

0 comments on commit 10c5e84

Please sign in to comment.