Plugin Directory

Changeset 3259800


Ignore:
Timestamp:
03/21/2025 03:18:23 PM (12 months ago)
Author:
chillcode
Message:

Update version

Location:
untappd-ratings-for-woocommerce/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • untappd-ratings-for-woocommerce/trunk/readme.txt

    r3056746 r3259800  
    33Tags: untappd, woocommerce, ratings, reviews, map feed
    44Requires at least: 6.0
    5 Tested up to: 6.4
     5Tested up to: 6.6
    66Requires PHP: 7.4
    7 Stable tag: 1.0.6
     7Stable tag: 1.0.7
    88WC requires at least: 6
    9 WC tested up to: 8
     9WC tested up to: 9.1.2
    1010License: GPLv3
    1111License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • untappd-ratings-for-woocommerce/trunk/untappd-ratings-for-woocommerce.php

    r3056746 r3259800  
    1212 * Plugin URI: https://github.com/chillcode/untappd-ratings-for-woocommerce
    1313 * Description: Connect your WooCommerce Store with Untappd
    14  * Version: 1.0.6
     14 * Version: 1.0.7
    1515 * Requires at least: 6.0
    1616 * Requires PHP: 7.4
     
    2323 *
    2424 * WC requires at least: 6.0.1
    25  * WC tested up to: 8.5.2
     25 * WC tested up to: 9.1.2
    2626 */
    2727
     
    3333define( 'URWC_PLUGIN_DIR', dirname( URWC_PLUGIN_FILE ) . DIRECTORY_SEPARATOR );
    3434define( 'URWC_NAME', 'Untappd Ratings for WooCommerce' );
    35 define( 'URWC_VERSION', '1.0.6' );
     35define( 'URWC_VERSION', '1.0.7' );
    3636
    3737require_once URWC_PLUGIN_DIR . 'includes' . DIRECTORY_SEPARATOR . 'class-urwc-ratings.php';
     
    5252
    5353/**
     54 * HPOS compatibility.
     55 *
     56 * More info: https://developer.woocommerce.com/docs/hpos-extension-recipe-book/
     57 */
     58add_action(
     59    'before_woocommerce_init',
     60    function () {
     61        if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
     62            \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
     63        }
     64    }
     65);
     66
     67/**
    5468 * Initialize the plugin.
    5569 */
Note: See TracChangeset for help on using the changeset viewer.