Plugin Directory

Changeset 2967862


Ignore:
Timestamp:
09/16/2023 07:17:37 PM (3 years ago)
Author:
Amgnando
Message:

Deploy version 1.2.0

Location:
autocomplete-address-for-woocommerce
Files:
8 added
2 edited

Legend:

Unmodified
Added
Removed
  • autocomplete-address-for-woocommerce/trunk/autocomplete-address-for-woocommerce.php

    r2553002 r2967862  
    66 * Author:               Fernando Acosta
    77 * Author URI:           https://fernandoacosta.net
    8  * Version:              1.1.0
     8 * Version:              1.2.0
    99 * License:              GPLv2 or later
    1010 * WC requires at least: 3.3.0
    11  * WC tested up to:      5.4.1
     11 * WC tested up to:      8.8.1
    1212 *
    1313 * This plugin is free software: you can redistribute it and/or modify
     
    3838   * @var float
    3939   */
    40   const VERSION = '1.1.0';
     40  const VERSION = '1.2.0';
    4141
    4242  /**
     
    103103
    104104add_action( 'plugins_loaded', array( 'WC_Autocomplete_Address', 'get_instance' ) );
     105
     106// Declare compatibility with custom order tables for WooCommerce.
     107add_action(
     108    'before_woocommerce_init',
     109    function () {
     110        if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) {
     111            \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
     112        }
     113    }
     114);
  • autocomplete-address-for-woocommerce/trunk/readme.txt

    r2501924 r2967862  
    44Tags: endereço, woocommerce, cep, correios, autocomplete, address
    55Requires at least: 5.0.0
    6 Tested up to: 5.7
     6Tested up to: 6.3
    77Stable tag: trunk
    88Requires PHP: 7.0.0
     
    4545== Changelog ==
    4646
     47= 1.2.0 - 2023/09/16 =
     48
     49- WooCommerce HPOS
     50
    4751= 1.0.1 - 2021/03/23 =
    4852
Note: See TracChangeset for help on using the changeset viewer.