Plugin Directory

Changeset 3085575


Ignore:
Timestamp:
05/13/2024 09:40:48 AM (23 months ago)
Author:
antidot-dev
Message:

Release 3.1.2

Location:
bpost-shipping/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • bpost-shipping/trunk/bpost-shipping.php

    r3079657 r3085575  
    66 * Author: bpost
    77 * Author URI: https://www.bpost.be/
    8  * Version: 3.1.1
     8 * Version: 3.1.2
    99 * WC requires at least: 3.0
    1010 * WC tested up to: 8.9
     
    1515define( 'BPOST_PLUGIN_DIR', __DIR__ );
    1616define( 'BPOST_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    17 define( 'BPOST_PLUGIN_VERSION', '3.1.1' );
     17define( 'BPOST_PLUGIN_VERSION', '3.1.2' );
    1818
    1919/**
     
    175175    2
    176176);
     177
     178// bpost plugin is HPOS compliant
     179add_action( 'before_woocommerce_init', function() {
     180    if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
     181        \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
     182        \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'cart_checkout_blocks', __FILE__, false );
     183    }
     184} );
  • bpost-shipping/trunk/composer.json

    r3079657 r3085575  
    33  "description": "WooCommerce plugin for bpost shipping",
    44  "type": "wordpress-plugin",
    5   "version": "3.1.1",
     5  "version": "3.1.2",
    66
    77  "require": {
  • bpost-shipping/trunk/languages/bpost_shipping.pot

    r3079657 r3085575  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: bpost shipping 3.1.1\n"
     5"Project-Id-Version: bpost shipping 3.1.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/package\n"
    7 "POT-Creation-Date: 2024-04-30 21:52:38+00:00\n"
     7"POT-Creation-Date: 2024-05-13 09:42:14+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=UTF-8\n"
     
    197197msgstr ""
    198198
    199 #. #-#-#-#-#  bpost_shipping.pot (bpost shipping 3.1.1)  #-#-#-#-#
     199#. #-#-#-#-#  bpost_shipping.pot (bpost shipping 3.1.2)  #-#-#-#-#
    200200#. Author of the plugin/theme
    201201#: classes/class-wc-bpost-shipping-method.php:264
  • bpost-shipping/trunk/readme.txt

    r3079657 r3085575  
    88Tested up to: 6.5
    99Requires PHP: 7.4
    10 Stable tag: 3.1.1
     10Stable tag: 3.1.2
    1111License: GPLv2 or later
    1212License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1201205. Configure your bpost shipping settings under the Woocommerce shipping > bpost shipping tab
    121121== Changelog ==
     122
     123#### 3.1.2
     124
     125*Release date: 2024-05-13*
     126
     127* Declare compatibility with HPOS
     128* Declare **incompatibility** with block-based checkout (yet!)
    122129
    123130#### 3.1.1
Note: See TracChangeset for help on using the changeset viewer.