Skip to content

Commit

Permalink
v2.12.13: fixes changelog formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
0xNe0x1 committed Nov 30, 2024
1 parent 987d002 commit 574f451
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions depay-woocommerce-payments.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* WC tested up to: 8.7.0
* Requires at least: 5.8
* Requires PHP: 7.0
* Version: 2.12.12
* Version: 2.12.13
*
* @package DePay\Payments
*/
Expand All @@ -21,7 +21,7 @@
define( 'DEPAY_WC_PLUGIN_FILE', __FILE__ );
define( 'DEPAY_WC_ABSPATH', __DIR__ . '/' );
define( 'DEPAY_MIN_WC_ADMIN_VERSION', '0.23.2' );
define( 'DEPAY_CURRENT_VERSION', '2.12.12' );
define( 'DEPAY_CURRENT_VERSION', '2.12.13' );

require_once DEPAY_WC_ABSPATH . '/vendor/autoload.php';

Expand Down
2 changes: 1 addition & 1 deletion languages/depay-woocommerce-payments.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is distributed under the same license as the package.
msgid ""
msgstr ""
"Project-Id-Version: DePay WooCommerce Payments 2.12.12\n"
"Project-Id-Version: DePay WooCommerce Payments 2.12.13\n"
"Report-Msgid-Bugs-To: "
"[email protected]\n"
"MIME-Version: 1.0\n"
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-woocommerce-depay-payments",
"moduleName": "WooCommerceDePayPayments",
"version": "2.12.12",
"version": "2.12.13",
"description": "WooCommerce DePay plugin to accept Web3 payments directly into your wallet with on-the-fly conversion.",
"main": "./dist/umd/index.js",
"module": "./dist/esm/index.js",
Expand Down
9 changes: 6 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: web3, payments, woocommerce, depay, cryptocurrency
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.2
Stable tag: 2.12.12
Stable tag: 2.12.13
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -82,10 +82,13 @@ Denominate your items in crypto-currencies.

== Changelog ==

= 2024-11-30 - v2.12.12=
= 2024-11-30 - v2.12.13 =
* fixes changelog formatting

= 2024-11-30 - v2.12.12 =
* fixes .zip release

= 2024-11-30 - v2.12.11=
= 2024-11-30 - v2.12.11 =
* fix missing changelog

= 2024-11-27 - v2.12.10 =
Expand Down
2 changes: 1 addition & 1 deletion update-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ prompt.get(['version'], async (err, result)=> {

await replace({ files: './package.json', from: `"version": "${package.version}",`, to: `"version": "${result.version}",`})
await replace({ files: './readme.txt', from: `Stable tag: ${package.version}`, to: `Stable tag: ${result.version}`})
await replace({ files: './readme.txt', from: `== Changelog ==`, to: `== Changelog ==\n\n= ${year}-${month}-${day} - v${result.version}=\n*`})
await replace({ files: './readme.txt', from: `== Changelog ==`, to: `== Changelog ==\n\n= ${year}-${month}-${day} - v${result.version} =\n*`})
await replace({ files: './depay-woocommerce-payments.php', from: `* Version: ${package.version}`, to: `* Version: ${result.version}`})
await replace({ files: './depay-woocommerce-payments.php', from: `define( 'DEPAY_CURRENT_VERSION', '${package.version}' );`, to: `define( 'DEPAY_CURRENT_VERSION', '${result.version}' );`})
await replace({ files: './languages/depay-woocommerce-payments.pot', from: `Project-Id-Version: DePay WooCommerce Payments ${package.version}`, to: `Project-Id-Version: DePay WooCommerce Payments ${result.version}`})
Expand Down

0 comments on commit 574f451

Please sign in to comment.