Skip to content
This repository was archived by the owner on Aug 28, 2025. It is now read-only.

Commit a8afe1e

Browse files
Add support for KES
1 parent db404e4 commit a8afe1e

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

paystack-give.php

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* Plugin Name: Paystack Payments for Give
1717
* Plugin URI: http://wordpress.org/plugins/paystack-give
1818
* Description: Paystack integration for accepting payments via card, bank accounts, USSD and mobile money
19-
* Version: 1.3.0
19+
* Version: 1.4.0
2020
* Author: Paystack
2121
* Author URI: https://paystack.com
2222
* License: GPL-2.0+
@@ -26,7 +26,7 @@
2626
*/
2727

2828
// If this file is called directly, abort.
29-
if (! defined('WPINC') ) {
29+
if (!defined('WPINC')) {
3030
die;
3131
}
3232

@@ -35,13 +35,13 @@
3535
* Start at version 1.0.0 and use SemVer - https://semver.org
3636
* Rename this for your plugin and update it as you release new versions.
3737
*/
38-
define('PLUGIN_NAME_VERSION', '1.3.0');
38+
define('PLUGIN_NAME_VERSION', '1.4.0');
3939

4040
/**
4141
* The code that runs during plugin activation.
4242
* This action is documented in includes/class-paystack-give-activator.php
4343
*/
44-
function activate_paystack_give()
44+
function activate_paystack_give()
4545
{
4646
include_once plugin_dir_path(__FILE__) . 'includes/class-paystack-give-activator.php';
4747
Paystack_Give_Activator::activate();
@@ -51,7 +51,7 @@ function activate_paystack_give()
5151
* The code that runs during plugin deactivation.
5252
* This action is documented in includes/class-paystack-give-deactivator.php
5353
*/
54-
function deactivate_paystack_give()
54+
function deactivate_paystack_give()
5555
{
5656
include_once plugin_dir_path(__FILE__) . 'includes/class-paystack-give-deactivator.php';
5757
Paystack_Give_Deactivator::deactivate();
@@ -75,11 +75,10 @@ function deactivate_paystack_give()
7575
*
7676
* @since 1.0.0
7777
*/
78-
function run_paystack_give()
78+
function run_paystack_give()
7979
{
8080

8181
$plugin = new Paystack_Give();
8282
$plugin->run();
83-
8483
}
8584
run_paystack_give();

readme.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,10 @@ Yes you can! Join in on our [GitHub repository](https://github.com/PaystackHQ/pa
9494

9595
== Upgrade Notice ==
9696

97+
= 1.4.0 =
98+
* Add support for KES
99+
* Fix compatibility with WordPress 5.8
100+
97101
= 1.3.0 =
98102
* Fix compatibility with WordPress 5.7
99103

0 commit comments

Comments
 (0)