diff --git a/package.json b/package.json index 63af079..e9af6b2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "woocommerce-product-tabs", "title": "WooCommerce Product Tabs", - "version": "2.0.21", + "version": "2.0.22", "license": "GPL-2.0+", "main_file": "woocommerce-product-tabs.php", "repository": { diff --git a/readme.txt b/readme.txt index e211607..7812ff1 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Tags: tabs, custom tabs, product tabs, woocommerce product tab, product custom t Requires PHP: 7.2 Requires at least: 5.8 Tested up to: 6.2.2 -Stable tag: 2.0.21 +Stable tag: 2.0.22 License: GNU General Public License v3.0 License URI: http://www.gnu.org/licenses/gpl-3.0.html Donate link: https://barn2.com @@ -80,6 +80,9 @@ WooCommerce adds 3 tabs Description, Additional Information and Reviews by defau == Changelog == += 2.0.22 - 2023-07-20 = +* Fixed admin area crashing due to missing dependency library + = 2.0.21 - 2023-07-20 = * Change of plugin details diff --git a/woocommerce-product-tabs.php b/woocommerce-product-tabs.php index 6a5f5e6..769e450 100644 --- a/woocommerce-product-tabs.php +++ b/woocommerce-product-tabs.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce Product Tabs * Plugin URI: https://barn2.com/wordpress-plugins/woocommerce-product-tabs/ * Description: WooCommerce Product Tabs is the best WordPress plugin to add new tabs for WooCommerce products. You can add as many custom tabs as you need to the product using this plugin. - * Version: 2.0.21 + * Version: 2.0.22 * Author: Barn2 Plugins * Author URI: https://barn2.com * License: GPL-2.0+ @@ -14,7 +14,7 @@ * Requires at least: 5.8 * Tested up to: 6.2 * WC requires at least: 3.6 - * WC tested up to: 7.4 + * WC tested up to: 7.9.0 * * @package Woocommerce_Product_Tabs */ @@ -36,7 +36,7 @@ // Define. define( 'WOOCOMMERCE_PRODUCT_TABS_NAME', 'Woocommerce Product Tabs' ); define( 'WOOCOMMERCE_PRODUCT_TABS_SLUG', 'woocommerce-product-tabs' ); -define( 'WOOCOMMERCE_PRODUCT_TABS_VERSION', '2.0.21' ); +define( 'WOOCOMMERCE_PRODUCT_TABS_VERSION', '2.0.22' ); define( 'WOOCOMMERCE_PRODUCT_TABS_BASENAME', basename( dirname( __FILE__ ) ) ); define( 'WOOCOMMERCE_PRODUCT_TABS_DIR', rtrim( plugin_dir_path( __FILE__ ), '/' ) ); define( 'WOOCOMMERCE_PRODUCT_TABS_URL', rtrim( plugin_dir_url( __FILE__ ), '/' ) );