Skip to content

Commit 087f414

Browse files
authored
Merge pull request #284 from woocommerce/release/2.2
Tag 2.2.0
2 parents aa86864 + cd1ea16 commit 087f414

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

changlog.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
*** WooCommerce Subscriptions CSV Importer and Exporter Changelog ***
22

3+
2024.07.08 - version 2.2.0
4+
* Add - Support for WooCommerce High Performance Order Storage. PR #262
5+
* Fix - Replace use of deprecated update_manual. PR #225
6+
* Fix - Replace direct access of subscription ID. PR #225
7+
* Fix - Allow importing of cancelled_date and fix handling of end_date. PR #278
8+
39
2020.04.20 - version 2.1.0
410
* Fix fatal errors which occur during the subscription import process. PR#214
511
* Add .htaccess and index.php files to the export directory. PR#218

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"title": "WooCommerce Subscriptions Importer and Exporter",
44
"author": "Prospress",
55
"license": "ISC",
6-
"version": "1.0.0",
6+
"version": "2.2.0",
77
"description": "",
8-
"homepage": "https://github.com/Prospress/woocommerce-subscriptions-importer-exporter",
8+
"homepage": "https://github.com/WooCommerce/woocommerce-subscriptions-importer-exporter",
99
"main": "Gruntfile.js",
1010
"repository": {
1111
"type": "git",
12-
"url": "https://github.com/Prospress/woocommerce-subscriptions-importer-exporter.git"
12+
"url": "https://github.com/WooCommerce/woocommerce-subscriptions-importer-exporter.git"
1313
},
1414
"bugs": {
15-
"url": "https://github.com/Prospress/woocommerce-subscriptions-importer-exporter/issues"
15+
"url": "https://github.com/WooCommerce/woocommerce-subscriptions-importer-exporter/issues"
1616
},
1717
"directories": {
1818
"test": "tests"

wcs-importer-exporter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: WooCommerce Subscriptions CSV Importer and Exporter
44
* Plugin URI: https://github.com/Prospress/woocommerce-subscriptions-importer-exporter
55
* Description: Import or export subscriptions in your WooCommerce store via CSV.
6-
* Version: 2.1.0
6+
* Version: 2.2.0
77
* Author: Prospress Inc
88
* Author URI: http://prospress.com
99
* License: GPLv3
@@ -61,7 +61,7 @@ class WCS_Importer_Exporter {
6161

6262
public static $wcs_exporter;
6363

64-
public static $version = '2.0.1';
64+
public static $version = '2.2.0';
6565

6666
protected static $required_subscriptions_version = '2.2.0';
6767

0 commit comments

Comments
 (0)