From cd1ea167eaa6213ad76fe877ac96b1c32cdbb888 Mon Sep 17 00:00:00 2001 From: claudiulodro Date: Mon, 8 Jul 2024 08:03:34 -0700 Subject: [PATCH] 2.2.0 --- changlog.txt | 6 ++++++ package.json | 8 ++++---- wcs-importer-exporter.php | 4 ++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/changlog.txt b/changlog.txt index ae73f8d..3a09a2c 100644 --- a/changlog.txt +++ b/changlog.txt @@ -1,5 +1,11 @@ *** WooCommerce Subscriptions CSV Importer and Exporter Changelog *** +2024.07.08 - version 2.2.0 +* Add - Support for WooCommerce High Performance Order Storage. PR #262 +* Fix - Replace use of deprecated update_manual. PR #225 +* Fix - Replace direct access of subscription ID. PR #225 +* Fix - Allow importing of cancelled_date and fix handling of end_date. PR #278 + 2020.04.20 - version 2.1.0 * Fix fatal errors which occur during the subscription import process. PR#214 * Add .htaccess and index.php files to the export directory. PR#218 diff --git a/package.json b/package.json index 118efc5..16e1168 100644 --- a/package.json +++ b/package.json @@ -3,16 +3,16 @@ "title": "WooCommerce Subscriptions Importer and Exporter", "author": "Prospress", "license": "ISC", - "version": "1.0.0", + "version": "2.2.0", "description": "", - "homepage": "https://github.com/Prospress/woocommerce-subscriptions-importer-exporter", + "homepage": "https://github.com/WooCommerce/woocommerce-subscriptions-importer-exporter", "main": "Gruntfile.js", "repository": { "type": "git", - "url": "https://github.com/Prospress/woocommerce-subscriptions-importer-exporter.git" + "url": "https://github.com/WooCommerce/woocommerce-subscriptions-importer-exporter.git" }, "bugs": { - "url": "https://github.com/Prospress/woocommerce-subscriptions-importer-exporter/issues" + "url": "https://github.com/WooCommerce/woocommerce-subscriptions-importer-exporter/issues" }, "directories": { "test": "tests" diff --git a/wcs-importer-exporter.php b/wcs-importer-exporter.php index 86002e1..7909592 100644 --- a/wcs-importer-exporter.php +++ b/wcs-importer-exporter.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce Subscriptions CSV Importer and Exporter * Plugin URI: https://github.com/Prospress/woocommerce-subscriptions-importer-exporter * Description: Import or export subscriptions in your WooCommerce store via CSV. - * Version: 2.1.0 + * Version: 2.2.0 * Author: Prospress Inc * Author URI: http://prospress.com * License: GPLv3 @@ -61,7 +61,7 @@ class WCS_Importer_Exporter { public static $wcs_exporter; - public static $version = '2.0.1'; + public static $version = '2.2.0'; protected static $required_subscriptions_version = '2.2.0';