Plugin Directory

Changeset 2969504


Ignore:
Timestamp:
09/21/2023 04:17:32 AM (3 years ago)
Author:
omise
Message:

Update to version 5.4.0 from GitHub

Location:
omise
Files:
6 added
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • omise/tags/5.4.0/CHANGELOG.md

    r2962817 r2969504  
    11# CHANGELOG
     2
     3### [v5.4.0 _(Sep 21, 2023)_](https://github.com/omise/omise-woocommerce/releases/tag/v5.4.0)
     4- Added OCBC Digital for Singapore PSP. (PR [#401](https://github.com/omise/omise-woocommerce/pull/401))
    25
    36### [v5.3.1 _(Sep 05, 2023)_](https://github.com/omise/omise-woocommerce/releases/tag/v5.3.1)
  • omise/tags/5.4.0/includes/class-omise-payment-factory.php

    r2912289 r2969504  
    3333        'Omise_Payment_RabbitLinePay',
    3434        'Omise_Payment_OCBC_PAO',
     35        'Omise_Payment_OCBC_Digital',
    3536        'Omise_Payment_GrabPay',
    3637        'Omise_Payment_GooglePay',
  • omise/tags/5.4.0/omise-woocommerce.php

    r2962817 r2969504  
    55 * Plugin URI:  https://www.omise.co/woocommerce
    66 * Description: Opn Payments is a WordPress plugin designed specifically for WooCommerce. The plugin adds support for Opn Payments Payment Gateway's payment methods to WooCommerce.
    7  * Version:     5.3.1
     7 * Version:     5.4.0
    88 * Author:      Opn Payments and contributors
    99 * Author URI:  https://github.com/omise/omise-woocommerce/graphs/contributors
     
    2323     * @var string
    2424     */
    25     public $version = '5.3.1';
     25    public $version = '5.4.0';
    2626
    2727    /**
     
    214214        require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-grabpay.php';
    215215        require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-ocbc-pao.php';
     216        require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-ocbc-digital.php';
    216217        require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-boost.php';
    217218        require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-duitnow-obw.php';
  • omise/tags/5.4.0/readme.txt

    r2962817 r2969504  
    44Requires at least: 4.3.1
    55Tested up to: 6.0.2
    6 Stable tag: 5.3.1
     6Stable tag: 5.4.0
    77License: MIT
    88License URI: https://opensource.org/licenses/MIT
     
    3434
    3535== Changelog ==
     36
     37= 5.4.0 =
     38
     39- Added OCBC Digital for Singapore PSP. (PR [#401](https://github.com/omise/omise-woocommerce/pull/401))
    3640
    3741= 5.3.1 =
  • omise/tags/5.4.0/tests/unit/includes/gateway/class-omise-offsite-test.php

    r2962817 r2969504  
    1212        $offsite->shouldReceive('get_option');
    1313        $offsite->shouldReceive('get_provider');
     14        $offsite->shouldReceive('getRedirectUrl');
     15        $offsite->shouldReceive('getMetadata');
    1416
    1517        // mocking WP built-in functions
     
    2123            function add_action() {}
    2224        }
    23 
    24         require_once __DIR__ . '/../../../../includes/gateway/class-omise-payment-alipayplus.php';
    2525    }
    2626
  • omise/trunk/CHANGELOG.md

    r2962817 r2969504  
    11# CHANGELOG
     2
     3### [v5.4.0 _(Sep 21, 2023)_](https://github.com/omise/omise-woocommerce/releases/tag/v5.4.0)
     4- Added OCBC Digital for Singapore PSP. (PR [#401](https://github.com/omise/omise-woocommerce/pull/401))
    25
    36### [v5.3.1 _(Sep 05, 2023)_](https://github.com/omise/omise-woocommerce/releases/tag/v5.3.1)
  • omise/trunk/includes/class-omise-payment-factory.php

    r2912289 r2969504  
    3333        'Omise_Payment_RabbitLinePay',
    3434        'Omise_Payment_OCBC_PAO',
     35        'Omise_Payment_OCBC_Digital',
    3536        'Omise_Payment_GrabPay',
    3637        'Omise_Payment_GooglePay',
  • omise/trunk/omise-woocommerce.php

    r2962817 r2969504  
    55 * Plugin URI:  https://www.omise.co/woocommerce
    66 * Description: Opn Payments is a WordPress plugin designed specifically for WooCommerce. The plugin adds support for Opn Payments Payment Gateway's payment methods to WooCommerce.
    7  * Version:     5.3.1
     7 * Version:     5.4.0
    88 * Author:      Opn Payments and contributors
    99 * Author URI:  https://github.com/omise/omise-woocommerce/graphs/contributors
     
    2323     * @var string
    2424     */
    25     public $version = '5.3.1';
     25    public $version = '5.4.0';
    2626
    2727    /**
     
    214214        require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-grabpay.php';
    215215        require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-ocbc-pao.php';
     216        require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-ocbc-digital.php';
    216217        require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-boost.php';
    217218        require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-duitnow-obw.php';
  • omise/trunk/readme.txt

    r2962817 r2969504  
    44Requires at least: 4.3.1
    55Tested up to: 6.0.2
    6 Stable tag: 5.3.1
     6Stable tag: 5.4.0
    77License: MIT
    88License URI: https://opensource.org/licenses/MIT
     
    3434
    3535== Changelog ==
     36
     37= 5.4.0 =
     38
     39- Added OCBC Digital for Singapore PSP. (PR [#401](https://github.com/omise/omise-woocommerce/pull/401))
    3640
    3741= 5.3.1 =
  • omise/trunk/tests/unit/includes/gateway/class-omise-offsite-test.php

    r2962817 r2969504  
    1212        $offsite->shouldReceive('get_option');
    1313        $offsite->shouldReceive('get_provider');
     14        $offsite->shouldReceive('getRedirectUrl');
     15        $offsite->shouldReceive('getMetadata');
    1416
    1517        // mocking WP built-in functions
     
    2123            function add_action() {}
    2224        }
    23 
    24         require_once __DIR__ . '/../../../../includes/gateway/class-omise-payment-alipayplus.php';
    2525    }
    2626
Note: See TracChangeset for help on using the changeset viewer.