From 99383493b5af88737784f62bb2fff8e54637a7e2 Mon Sep 17 00:00:00 2001 From: Brian Henry Date: Wed, 29 Jun 2022 21:58:57 -0700 Subject: [PATCH] 1.3.1 --- CHANGELOG.md | 5 +++++ src/API/class-settings.php | 2 +- src/nullcorps-woocommerce-gateway-bitcoin.php | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d7295d..90bacbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +### 1.3.1 + +* Fix: continue checking for address transactions after order is marked paid +* Fix: Bitcoin logo was not displaying on checkout + ### 1.3.0 * UI: add xpub and derivation path to admin order metabox diff --git a/src/API/class-settings.php b/src/API/class-settings.php index f264f6a..761afeb 100644 --- a/src/API/class-settings.php +++ b/src/API/class-settings.php @@ -70,7 +70,7 @@ public function get_plugin_basename(): string { * @return string */ public function get_plugin_version(): string { - return defined( 'NULLCORPS_WOOCOMMERCE_GATEWAY_BITCOIN_VERSION' ) ? NULLCORPS_WOOCOMMERCE_GATEWAY_BITCOIN_VERSION : '1.3.0'; + return defined( 'NULLCORPS_WOOCOMMERCE_GATEWAY_BITCOIN_VERSION' ) ? NULLCORPS_WOOCOMMERCE_GATEWAY_BITCOIN_VERSION : '1.3.1'; } /** diff --git a/src/nullcorps-woocommerce-gateway-bitcoin.php b/src/nullcorps-woocommerce-gateway-bitcoin.php index 4034ea5..cfb88d0 100644 --- a/src/nullcorps-woocommerce-gateway-bitcoin.php +++ b/src/nullcorps-woocommerce-gateway-bitcoin.php @@ -16,7 +16,7 @@ * Plugin Name: WooCommerce Gateway Bitcoin * Plugin URI: http://github.com/BrianHenryIE/woocommerce-gateway-bitcoin/ * Description: Accept Bitcoin payments using self-custodied wallets, and no external account. Calculates wallet addresses locally and uses open APIs to verify payments. For an emphasis on privacy & sovereignty. - * Version: 1.3.0 + * Version: 1.3.1 * Requires PHP: 7.4 * Author: Nullcorps, BrianHenryIE * Author URI: https://github.com/Nullcorps/ @@ -50,7 +50,7 @@ * Start at version 1.0.0 and use SemVer - https://semver.org * Rename this for your plugin and update it as you release new versions. */ -define( 'NULLCORPS_WOOCOMMERCE_GATEWAY_BITCOIN_VERSION', '1.3.0' ); +define( 'NULLCORPS_WOOCOMMERCE_GATEWAY_BITCOIN_VERSION', '1.3.1' ); define( 'NULLCORPS_WOOCOMMERCE_GATEWAY_BITCOIN_BASENAME', plugin_basename( __FILE__ ) ); define( 'NULLCORPS_WOOCOMMERCE_GATEWAY_BITCOIN_PATH', trailingslashit( __DIR__ ) );