Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version 3.0.5 #32

Merged
merged 2 commits into from
Oct 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
5 changes: 5 additions & 0 deletions PluginInstallation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [v3.0.5](https://github.com/logeecom/pl_woocommerce_module/compare/v3.0.4...v3.0.5) - 2020-10-21
### Changed
- Update to the latest Core 3.0.4.
- Add sending "disable_carriers" analytics.

## [v3.0.4](https://github.com/logeecom/pl_woocommerce_module/compare/v3.0.3...v3.0.4) - 2020-09-28
### Changed
- Check whether Packlink object is defined before initializing checkout script.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
use Logeecom\Infrastructure\ORM\RepositoryRegistry;
use Logeecom\Infrastructure\ServiceRegister;
use Logeecom\Infrastructure\Singleton;
use Packlink\BusinessLogic\Controllers\AnalyticsController;
use Packlink\BusinessLogic\ShippingMethod\Interfaces\ShopShippingMethodService;
use Packlink\BusinessLogic\ShippingMethod\Models\ShippingMethod;
use Packlink\BusinessLogic\ShippingMethod\Models\ShippingPricePolicy;
Expand Down Expand Up @@ -132,6 +133,7 @@ public function getCarrierLogoFilePath( $carrier_name ) {
*/
public function disableShopServices() {
Shipping_Method_Helper::disable_shop_shipping_methods();
AnalyticsController::sendOtherServicesDisabledEvent();

return true;
}
Expand Down
4 changes: 2 additions & 2 deletions src/composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "packlink/woocommerce",
"description": "Packlink WooCommerce Integration",
"version": "3.0.4",
"version": "3.0.5",
"type": "library",
"repositories": [
{
Expand All @@ -12,7 +12,7 @@
],
"require": {
"php": ">=5.5",
"packlink/integration-core": "3.0.1",
"packlink/integration-core": "3.0.4",
"ext-json": "*",
"ext-curl": "*",
"ext-zip": "*",
Expand Down
12 changes: 6 additions & 6 deletions src/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/packlink-pro-shipping.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Plugin Name: Packlink PRO Shipping
* Plugin URI: https://en.wordpress.org/plugins/packlink-pro-shipping/
* Description: Save up to 70% on your shipping costs. No fixed fees, no minimum shipping volume required. Manage all your shipments in a single platform.
* Version: 3.0.4
* Version: 3.0.5
* Author: Packlink Shipping S.L.
* Author URI: https://pro.packlink.es/
* License: GPL
Expand Down
8 changes: 7 additions & 1 deletion src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: woocommerce, shipment, shipping, packlink
Requires at least: 4.7
Requires PHP: 5.5
Tested up to: 5.5
Stable tag: 3.0.4
Stable tag: 3.0.5
License: LICENSE-2.0
License URI: http://www.apache.org/licenses/LICENSE-2.0

Expand Down Expand Up @@ -68,6 +68,12 @@ Click <a href="https://support-pro.packlink.com/hc/es-es/articles/210158585" tar

== Changelog ==

#### 3.0.5 - October 21, 2020

**Updates**

- Add sending "disable_carriers" analytics.

#### 3.0.4 - September 28, 2020

**Updates**
Expand Down