Skip to content

Commit a69590a

Browse files
committed
set version to 5.2.1
1 parent b32b33f commit a69590a

11 files changed

+14
-10
lines changed
0 Bytes
Binary file not shown.

languages/wp-bootstrap-blocks-de_CH.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the same license as the Bootstrap Blocks plugin.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Bootstrap Blocks 5.2.0\n"
5+
"Project-Id-Version: Bootstrap Blocks 5.2.1\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bootstrap-"
77
"blocks\n"
88
"POT-Creation-Date: 2025-06-02T12:03:08+00:00\n"
0 Bytes
Binary file not shown.

languages/wp-bootstrap-blocks-de_DE.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the same license as the Bootstrap Blocks plugin.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Bootstrap Blocks 5.2.0\n"
5+
"Project-Id-Version: Bootstrap Blocks 5.2.1\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bootstrap-"
77
"blocks\n"
88
"POT-Creation-Date: 2025-06-02T12:03:08+00:00\n"

languages/wp-bootstrap-blocks.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the GPL2+.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Bootstrap Blocks 5.2.0\n"
5+
"Project-Id-Version: Bootstrap Blocks 5.2.1\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bootstrap-blocks\n"
77
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
88
"Language-Team: LANGUAGE <[email protected]>\n"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wp-bootstrap-blocks",
3-
"version": "5.2.0",
3+
"version": "5.2.1",
44
"private": true,
55
"description": "Bootstrap Gutenberg Blocks for WordPress",
66
"author": "Jürg Hunziker",

readme.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: gutenberg, blocks, bootstrap
55
Requires at least: 5.3
66
Tested up to: 6.8
77
Requires PHP: 5.6
8-
Stable tag: 5.2.0
8+
Stable tag: 5.2.1
99
License: GPLv2
1010
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1111

@@ -143,6 +143,10 @@ Please create a new GitHub issue and let us know: [https://github.com/tschortsch
143143

144144
== Changelog ==
145145

146+
= 5.2.1 =
147+
148+
* [COMPATIBILITY] Tested up to WordPress 6.8.
149+
146150
= 5.2.0 =
147151

148152
* [COMPATIBILITY] Tested up to WordPress 6.4.

src/class-wp-bootstrap-blocks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class WP_Bootstrap_Blocks {
3333
*
3434
* @var string
3535
*/
36-
public static $version = '5.2.0';
36+
public static $version = '5.2.1';
3737

3838
/**
3939
* The plugin token.

test-themes/bootstrap/functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function bootstrap_scripts() {
4747
if ( \WP_Bootstrap_Blocks\Settings::is_bootstrap_5_active() ) {
4848
if ( \WP_Bootstrap_Blocks\Settings::is_css_grid_enabled() ) {
4949
wp_enqueue_script( 'popper.js', 'https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js', array(), '2.11.5', true );
50-
wp_enqueue_style( 'bootstrap5-styles', get_template_directory_uri() . '/bootstrap-with-cssgrid.css', array(), '5.2.0' );
50+
wp_enqueue_style( 'bootstrap5-styles', get_template_directory_uri() . '/bootstrap-with-cssgrid.css', array(), '5.2.1' );
5151
wp_enqueue_script( 'bootstrap5-scripts', 'https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js', array( 'popper.js' ), '5.2.0', true );
5252
} else {
5353
wp_enqueue_script( 'popper.js', 'https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js', array(), '2.11.5', true );

0 commit comments

Comments
 (0)