Skip to content

Commit 60dcec0

Browse files
committed
Bump versions
1 parent ac44e98 commit 60dcec0

File tree

3 files changed

+15
-18
lines changed

3 files changed

+15
-18
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@
55
Extending the Code block with syntax highlighting rendered on the server, thus being AMP-compatible and having faster frontend performance.
66

77
**Contributors:** [westonruter](https://profiles.wordpress.org/westonruter), [allejo](https://profiles.wordpress.org/allejo)
8-
**Tags:** [block](https://wordpress.org/plugins/tags/block), [code](https://wordpress.org/plugins/tags/code), [code syntax](https://wordpress.org/plugins/tags/code-syntax), [syntax highlight](https://wordpress.org/plugins/tags/syntax-highlight), [code highlighting](https://wordpress.org/plugins/tags/code-highlighting)
9-
**Requires at least:** 6.4
10-
**Tested up to:** 6.6
11-
**Stable tag:** 1.5.0
8+
**Tags:** [block](https://wordpress.org/plugins/tags/block), [code](https://wordpress.org/plugins/tags/code), [code syntax](https://wordpress.org/plugins/tags/code-syntax), [syntax highlight](https://wordpress.org/plugins/tags/syntax-highlight), [code highlighting](https://wordpress.org/plugins/tags/code-highlighting)
9+
**Tested up to:** 6.7
10+
**Stable tag:** 1.5.1
1211
**License:** [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
13-
**Requires PHP:** 7.4
1412

1513
[![Continuous Integration](https://github.com/westonruter/syntax-highlighting-code-block/actions/workflows/ci.yaml/badge.svg)](https://github.com/westonruter/syntax-highlighting-code-block/actions/workflows/ci.yaml)
1614
[![Built with Grunt](https://gruntjs.com/cdn/builtwith.svg)](http://gruntjs.com)

bin/transform-readme.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,10 @@ static function ( $matches ) {
6666
$expected_metadata = [
6767
'Contributors',
6868
'Tags',
69-
'Requires at least',
7069
'Tested up to',
7170
'Stable tag',
7271
'License',
7372
'License URI',
74-
'Requires PHP',
7573
];
7674
foreach ( $expected_metadata as $key ) {
7775
if ( empty( $metadata[ $key ] ) ) {

syntax-highlighting-code-block.php

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
11
<?php
22
/**
3-
* Plugin Name: Syntax-highlighting Code Block (with Server-side Rendering)
4-
* Plugin URI: https://github.com/westonruter/syntax-highlighting-code-block
5-
* Description: Extending the Code block with syntax highlighting rendered on the server, thus being AMP-compatible and having faster frontend performance.
6-
* Version: 1.5.1-alpha
7-
* Author: Weston Ruter
8-
* Author URI: https://weston.ruter.net/
9-
* License: GPL2
10-
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
11-
* Text Domain: syntax-highlighting-code-block
12-
* Requires PHP: 7.4
3+
* Plugin Name: Syntax-highlighting Code Block (with Server-side Rendering)
4+
* Plugin URI: https://github.com/westonruter/syntax-highlighting-code-block
5+
* Description: Extending the Code block with syntax highlighting rendered on the server, thus being AMP-compatible and having faster frontend performance.
6+
* Requires at least: 6.6
7+
* Requires PHP: 7.4
8+
* Version: 1.5.1
9+
* Author: Weston Ruter
10+
* Author URI: https://weston.ruter.net/
11+
* License: GPL2
12+
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
13+
* Text Domain: syntax-highlighting-code-block
1314
*
1415
* @package Syntax_Highlighting_Code_Block
1516
*/
1617

1718
namespace Syntax_Highlighting_Code_Block;
1819

19-
const PLUGIN_VERSION = '1.5.1-alpha';
20+
const PLUGIN_VERSION = '1.5.1';
2021

2122
const PLUGIN_MAIN_FILE = __FILE__;
2223

0 commit comments

Comments
 (0)