Skip to content

Commit

Permalink
v2.3.11: fixes edge-case routing issues with low-liquidity tokens on …
Browse files Browse the repository at this point in the history
…Uniswap v3
  • Loading branch information
0xNe0x1 committed Aug 13, 2024
1 parent 0c50e6b commit 34f75a5
Show file tree
Hide file tree
Showing 9 changed files with 39 additions and 36 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ git commit

```
git push
git tag v2.3.10
git push origin v2.3.10
git tag v2.3.11
git push origin v2.3.11
```
2 changes: 1 addition & 1 deletion block.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"category": "widgets",
"description": "Web3 payments directly into your own wallet. A Block-enabled WordPress plugin for P2P crypto payments with on-the-fly conversion.",
"keywords": [ "payments", "cryptocurrency", "p2p", "web3", "depay" ],
"version": "2.3.10",
"version": "2.3.11",
"textdomain": "depay-payments",
"example": {},
"editorScript": "depay-payments-script",
Expand Down
52 changes: 26 additions & 26 deletions core/includes/assets/js/widgets.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion core/includes/classes/class-depay-payments-block.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static function render_block(array $attributes) {
$wrapper_attributes
);

wp_register_style('depay-payments-frontend-style', DEPAYPAYMENTS_PLUGIN_URL . 'core/includes/assets/css/frontend.css', '2.3.10');
wp_register_style('depay-payments-frontend-style', DEPAYPAYMENTS_PLUGIN_URL . 'core/includes/assets/css/frontend.css', '2.3.11');
wp_enqueue_style('depay-payments-frontend-style');

wp_register_script(
Expand Down
2 changes: 1 addition & 1 deletion core/includes/classes/class-depay-payments-link.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static function register() {
DEPAYPAYMENTS_PLUGIN_URL . 'core/includes/assets/js/frontend.js',
[],
DEPAYPAYMENTS_PLUGIN_URL . 'core/includes/assets/js/frontend.js',
'2.3.10',
'2.3.11',
true
);

Expand Down
2 changes: 1 addition & 1 deletion core/includes/classes/class-depay-payments-run.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function __construct(){

private function add_hooks(){

wp_register_style('depay-payments-frontend-style', DEPAYPAYMENTS_PLUGIN_URL . 'core/includes/assets/css/frontend.css', '2.3.10');
wp_register_style('depay-payments-frontend-style', DEPAYPAYMENTS_PLUGIN_URL . 'core/includes/assets/css/frontend.css', '2.3.11');
wp_enqueue_style('depay-payments-frontend-style');

wp_register_script(
Expand Down
4 changes: 2 additions & 2 deletions depay-payments.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Plugin Name: DePay Payments
* Plugin URI: https://depay.com/plugins/wordpress
* Description: Web3 payments directly into your own wallet. Block-enabled Wordpress plugin for P2P cryptocurrency payments on multiple blockchains, with on-the-fly token conversion.
* Version: 2.3.10
* Version: 2.3.11
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Author: DePay
Expand All @@ -29,7 +29,7 @@
define( 'DEPAYPAYMENTS_NAME', 'DePay Payments' );

// Plugin version
define( 'DEPAYPAYMENTS_VERSION', '2.3.10' );
define( 'DEPAYPAYMENTS_VERSION', '2.3.11' );

// Plugin Root File
define( 'DEPAYPAYMENTS_PLUGIN_FILE', __FILE__ );
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@depay/web3-wordpress-depay-payments",
"moduleName": "WordpressDePayPayments",
"version": "2.3.10",
"version": "2.3.11",
"description": "Web3 payments directly into your own wallet. A Block-enabled WordPress plugin for P2P cryptocurrency payments on multiple blockchains.",
"main": "./dist/umd/index.js",
"module": "./dist/esm/index.js",
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: depayfi
Tags: payments, cryptocurrency, p2p, web3, depay
Requires at least: 5.0
Tested up to: 6.5
Stable tag: 2.3.10
Stable tag: 2.3.11
Requires PHP: 5.6
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -81,6 +81,9 @@ Building on the idea that "Web3" is the next generation of a blockchain-based an

== Changelog ==

= 2.3.11 =
* fixes edge-case routing issues with low-liquidity tokens on Uniswap v3

= 2.3.10 =
* fixes Solana RPC failover issue

Expand Down

0 comments on commit 34f75a5

Please sign in to comment.