Skip to content

Commit

Permalink
Merge pull request #904 from westonruter/prepare/1.5.1-release
Browse files Browse the repository at this point in the history
Bump versions for 1.5.1 release
  • Loading branch information
westonruter authored Nov 12, 2024
2 parents ac44e98 + 60dcec0 commit 1ec59e4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 18 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@
Extending the Code block with syntax highlighting rendered on the server, thus being AMP-compatible and having faster frontend performance.

**Contributors:** [westonruter](https://profiles.wordpress.org/westonruter), [allejo](https://profiles.wordpress.org/allejo)
**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)
**Requires at least:** 6.4
**Tested up to:** 6.6
**Stable tag:** 1.5.0
**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)
**Tested up to:** 6.7
**Stable tag:** 1.5.1
**License:** [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
**Requires PHP:** 7.4

[![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)
[![Built with Grunt](https://gruntjs.com/cdn/builtwith.svg)](http://gruntjs.com)
Expand Down
2 changes: 0 additions & 2 deletions bin/transform-readme.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,10 @@ static function ( $matches ) {
$expected_metadata = [
'Contributors',
'Tags',
'Requires at least',
'Tested up to',
'Stable tag',
'License',
'License URI',
'Requires PHP',
];
foreach ( $expected_metadata as $key ) {
if ( empty( $metadata[ $key ] ) ) {
Expand Down
23 changes: 12 additions & 11 deletions syntax-highlighting-code-block.php
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
<?php
/**
* Plugin Name: Syntax-highlighting Code Block (with Server-side Rendering)
* Plugin URI: https://github.com/westonruter/syntax-highlighting-code-block
* Description: Extending the Code block with syntax highlighting rendered on the server, thus being AMP-compatible and having faster frontend performance.
* Version: 1.5.1-alpha
* Author: Weston Ruter
* Author URI: https://weston.ruter.net/
* License: GPL2
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: syntax-highlighting-code-block
* Requires PHP: 7.4
* Plugin Name: Syntax-highlighting Code Block (with Server-side Rendering)
* Plugin URI: https://github.com/westonruter/syntax-highlighting-code-block
* Description: Extending the Code block with syntax highlighting rendered on the server, thus being AMP-compatible and having faster frontend performance.
* Requires at least: 6.6
* Requires PHP: 7.4
* Version: 1.5.1
* Author: Weston Ruter
* Author URI: https://weston.ruter.net/
* License: GPL2
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: syntax-highlighting-code-block
*
* @package Syntax_Highlighting_Code_Block
*/

namespace Syntax_Highlighting_Code_Block;

const PLUGIN_VERSION = '1.5.1-alpha';
const PLUGIN_VERSION = '1.5.1';

const PLUGIN_MAIN_FILE = __FILE__;

Expand Down

0 comments on commit 1ec59e4

Please sign in to comment.