Skip to content
This repository was archived by the owner on Feb 23, 2024. It is now read-only.

Commit eb6a32b

Browse files
committed
Bumping version strings to new version.
1 parent f02ce0e commit eb6a32b

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@woocommerce/block-library",
33
"title": "WooCommerce Blocks",
44
"author": "Automattic",
5-
"version": "2.6.0-rc1",
5+
"version": "2.6.0",
66
"description": "WooCommerce blocks for the Gutenberg editor.",
77
"homepage": "https://github.com/woocommerce/woocommerce-gutenberg-products-block/",
88
"keywords": [

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: gutenberg, woocommerce, woo commerce, products, blocks, woocommerce blocks
44
Requires at least: 5.2
55
Tested up to: 5.4
66
Requires PHP: 5.6
7-
Stable tag: 2.6.0-rc1
7+
Stable tag: 2.6.0
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010

src/Assets.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ protected static function register_script( $handle, $src, $dependencies = [], $h
254254
* Queues a block script.
255255
*
256256
* @since 2.3.0
257-
* @since $VID:$ Changed $name to $script_name and added $handle argument.
257+
* @since 2.6.0 Changed $name to $script_name and added $handle argument.
258258
*
259259
* @param string $script_name Name of the script used to identify the file inside build folder.
260260
* @param string $handle Optional. Provided if the handle should be different than the script name. `wc-` prefix automatically added.

src/Assets/Api.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public function register_script( $handle, $relative_src, $dependencies = [], $ha
9999
* Queues a block script.
100100
*
101101
* @since 2.5.0
102-
* @since $VID:$ Changed $name to $script_name and added $handle argument.
102+
* @since 2.6.0 Changed $name to $script_name and added $handle argument.
103103
*
104104
* @param string $script_name Name of the script used to identify the file inside build folder .
105105
* @param string $handle Provided if the handle should be different than the script name . `wc-` prefix automatically added .
@@ -115,7 +115,7 @@ public function register_block_script( $script_name, $handle = '' ) {
115115
* Registers a style according to `wp_register_style`.
116116
*
117117
* @since 2.5.0
118-
* @since $VID:$ Change src to be relative source.
118+
* @since 2.6.0 Change src to be relative source.
119119
*
120120
* @param string $handle Name of the stylesheet. Should be unique.
121121
* @param string $relative_src Relative source of the stylesheet to the plugin path.

src/Package.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public static function container( $reset = false ) {
8484
NewPackage::class,
8585
function ( $container ) {
8686
// leave for automated version bumping.
87-
$version = '2.6.0-rc1';
87+
$version = '2.6.0';
8888
return new NewPackage(
8989
$version,
9090
dirname( __DIR__ )

src/Payments/Api.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* The Api class provides an interface to payment method registration.
2121
*
22-
* @since $VID:$
22+
* @since 2.6.0
2323
*/
2424
class Api {
2525
/**

src/Payments/Integrations/AbstractPaymentMethodType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* AbstractPaymentMethodType class.
1616
*
17-
* @since $VID:$
17+
* @since 2.6.0
1818
*/
1919
abstract class AbstractPaymentMethodType implements PaymentMethodTypeInterface {
2020
/**

src/Payments/Integrations/Cheque.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Cheque (core) gateway implementation.
44
*
55
* @package WooCommerce/Blocks
6-
* @since $VID:$
6+
* @since 2.6.0
77
*/
88

99
namespace Automattic\WooCommerce\Blocks\Payments\Integrations;
@@ -16,7 +16,7 @@
1616
/**
1717
* Cheque payment method integration
1818
*
19-
* @since $VID:$
19+
* @since 2.6.0
2020
*/
2121
final class Cheque extends AbstractPaymentMethodType {
2222
/**

src/Payments/Integrations/PayPal.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* PayPal Standard (core) gateway implementation.
44
*
55
* @package WooCommerce/Blocks
6-
* @since $VID:$
6+
* @since 2.6.0
77
*/
88

99
namespace Automattic\WooCommerce\Blocks\Payments\Integrations;
@@ -16,7 +16,7 @@
1616
/**
1717
* PayPal Standard payment method integration
1818
*
19-
* @since $VID:$
19+
* @since 2.6.0
2020
*/
2121
final class PayPal extends AbstractPaymentMethodType {
2222
/**

src/Payments/Integrations/Stripe.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* will be moved to the Stripe extension
66
*
77
* @package WooCommerce/Blocks
8-
* @since $VID:$
8+
* @since 2.6.0
99
*/
1010

1111
namespace Automattic\WooCommerce\Blocks\Payments\Integrations;
@@ -20,7 +20,7 @@
2020
/**
2121
* Stripe payment method integration
2222
*
23-
* @since $VID:$
23+
* @since 2.6.0
2424
*/
2525
final class Stripe extends AbstractPaymentMethodType {
2626
/**

0 commit comments

Comments
 (0)