From 7976449af4f5631c1b061f52628aa05c7325eefe Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Sun, 3 Oct 2021 10:47:03 +0900 Subject: [PATCH] Fix: the plugin would to work on some domains, due to a https error --- CHANGELOG.md | 4 ++++ composer.json | 2 +- src/class-wc-gateway-btcpay.php | 4 ++-- src/readme.txt | 4 ++++ 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad823da..6f29dfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 3.0.14 + +- Fix: the plugin would to work on some domains, due to a https error @ndeet + ## 3.0.13 - make plugin able to expand BTCPay payment methods as individual woocommerce payment methods (see https://docs.btcpayserver.org/FAQ/FAQ-Integrations/#how-to-configure-additional-token-support) @ndeet - allow plugin localization @janhn diff --git a/composer.json b/composer.json index 131f189..7d89c1a 100755 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ } ], "require": { - "bitpay/php-client": "dev-master#btcpay-v2.2.22" + "bitpay/php-client": "dev-master#btcpay-v2.2.23" }, "require-dev": { "wp-cli/wp-cli": "*", diff --git a/src/class-wc-gateway-btcpay.php b/src/class-wc-gateway-btcpay.php index 26e43db..a258b73 100644 --- a/src/class-wc-gateway-btcpay.php +++ b/src/class-wc-gateway-btcpay.php @@ -7,7 +7,7 @@ Author: BTCPay Author URI: https://github.com/btcpayserver - Version: 3.0.13 + Version: 3.0.14 License: Copyright 2011-2018 BTCPay & BitPay Inc., MIT License License URI: https://github.com/btcpayserver/woocommerce-plugin/blob/master/LICENSE GitHub Plugin URI: https://github.com/btcpayserver/woocommerce-plugin @@ -23,7 +23,7 @@ exit; } -define("BTCPAY_VERSION", "3.0.13"); +define("BTCPAY_VERSION", "3.0.14"); $autoloader_param = __DIR__ . '/lib/Bitpay/Autoloader.php'; // Load up the BitPay library diff --git a/src/readme.txt b/src/readme.txt index 7557a8b..55c70f7 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -120,6 +120,10 @@ You'll find extensive documentation and answers to many of your questions on [do == Changelog == +## 3.0.14 + +- Fix: the plugin would to work on some domains, due to a https error @ndeet + ## 3.0.13 - make plugin able to expand BTCPay payment methods as individual woocommerce payment methods (see https://docs.btcpayserver.org/FAQ/FAQ-Integrations/#how-to-configure-additional-token-support) @ndeet - allow plugin localization @janhn