Plugin Directory

Changeset 2994013


Ignore:
Timestamp:
11/10/2023 03:15:53 PM (2 years ago)
Author:
datafeedr.com
Message:

Update to version 0.9.70 from GitHub

Location:
datafeedr-comparison-sets
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • datafeedr-comparison-sets/tags/0.9.70/datafeedr-comparison-sets.php

    r2986837 r2994013  
    1010Requires PHP: 7.4
    1111Requires at least: 3.8
    12 Tested up to: 6.3.3-alpha
    13 Version: 0.9.69
     12Tested up to: 6.4.2-alpha
     13Version: 0.9.70
    1414
    1515WC requires at least: 3.0
    16 WC tested up to: 7.9
     16WC tested up to: 8.2
    1717
    1818Datafeedr Comparison Sets Plugin
     
    4343 * Define constants.
    4444 */
    45 define( 'DFRCS_VERSION', '0.9.69' );
     45define( 'DFRCS_VERSION', '0.9.70' );
    4646define( 'DFRCS_DB_VERSION', '0.9.0' );
    4747define( 'DFRCS_URL', plugin_dir_url( __FILE__ ) );
     
    8282require_once dirname( DFRCS_PLUGIN_FILE ) . '/includes/actions.php';
    8383require_once dirname( DFRCS_PLUGIN_FILE ) . '/includes/filters.php';
     84
     85/**
     86 * Declaring WooCommerce HPOS compatibility.
     87 *
     88 * @see https://github.com/woocommerce/woocommerce/wiki/High-Performance-Order-Storage-Upgrade-Recipe-Book
     89 *
     90 * @since 0.9.70
     91 */
     92add_action( 'before_woocommerce_init', function () {
     93    if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
     94        \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
     95    }
     96} );
    8497
    8598/**
  • datafeedr-comparison-sets/tags/0.9.70/readme.txt

    r2986837 r2994013  
    88Requires PHP: 7.4
    99Requires at least: 3.8
    10 Tested up to: 6.3.3-alpha
    11 Stable tag: 0.9.69
     10Tested up to: 6.4.2-alpha
     11Stable tag: 0.9.70
    1212
    1313Automatically create price comparison sets for your WooCommerce products or by using a shortcode.
     
    205205
    206206== Changelog ==
     207
     208= 0.9.70 - 2023/11/10 =
     209* Updated "tested up to" value
     210* Declaring WooCommerce HPOS compatibility.
    207211
    208212= 0.9.69 - 2023/10/31 =
  • datafeedr-comparison-sets/trunk/datafeedr-comparison-sets.php

    r2986837 r2994013  
    1010Requires PHP: 7.4
    1111Requires at least: 3.8
    12 Tested up to: 6.3.3-alpha
    13 Version: 0.9.69
     12Tested up to: 6.4.2-alpha
     13Version: 0.9.70
    1414
    1515WC requires at least: 3.0
    16 WC tested up to: 7.9
     16WC tested up to: 8.2
    1717
    1818Datafeedr Comparison Sets Plugin
     
    4343 * Define constants.
    4444 */
    45 define( 'DFRCS_VERSION', '0.9.69' );
     45define( 'DFRCS_VERSION', '0.9.70' );
    4646define( 'DFRCS_DB_VERSION', '0.9.0' );
    4747define( 'DFRCS_URL', plugin_dir_url( __FILE__ ) );
     
    8282require_once dirname( DFRCS_PLUGIN_FILE ) . '/includes/actions.php';
    8383require_once dirname( DFRCS_PLUGIN_FILE ) . '/includes/filters.php';
     84
     85/**
     86 * Declaring WooCommerce HPOS compatibility.
     87 *
     88 * @see https://github.com/woocommerce/woocommerce/wiki/High-Performance-Order-Storage-Upgrade-Recipe-Book
     89 *
     90 * @since 0.9.70
     91 */
     92add_action( 'before_woocommerce_init', function () {
     93    if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
     94        \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
     95    }
     96} );
    8497
    8598/**
  • datafeedr-comparison-sets/trunk/readme.txt

    r2986837 r2994013  
    88Requires PHP: 7.4
    99Requires at least: 3.8
    10 Tested up to: 6.3.3-alpha
    11 Stable tag: 0.9.69
     10Tested up to: 6.4.2-alpha
     11Stable tag: 0.9.70
    1212
    1313Automatically create price comparison sets for your WooCommerce products or by using a shortcode.
     
    205205
    206206== Changelog ==
     207
     208= 0.9.70 - 2023/11/10 =
     209* Updated "tested up to" value
     210* Declaring WooCommerce HPOS compatibility.
    207211
    208212= 0.9.69 - 2023/10/31 =
Note: See TracChangeset for help on using the changeset viewer.