Skip to content

Commit 8ab937d

Browse files
authored
Merge pull request #153 from Automattic/release/3.5.5
Release 3.5.5
2 parents 8d4c3e9 + d4d7e62 commit 8ab937d

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
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": "syntaxhighlighter",
3-
"version": "3.5.4",
3+
"version": "3.5.5",
44
"description": "Easily post syntax-highlighted code to your WordPress site without having to modify the code at all.",
55
"homepage": "https://alex.blog/wordpress-plugins/syntaxhighlighter/",
66
"author": "Alex Mills (Viper007Bond)",

readme.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://alex.blog/2019/03/13/in-memory-of-alex-donation-link-update
44
Tags: code, sourcecode, block, php, xhtml, html, css, WordPress.com
55
Requires at least: 4.2.3
66
Tested up to: 5.4
7-
Stable tag: 3.5.4
7+
Stable tag: 3.5.5
88

99
Easily post syntax-highlighted code to your site without having to modify the code at all. As seen on WordPress.com.
1010

@@ -40,6 +40,13 @@ Try excluding this plugin's Javascript from any performance optimizations your s
4040

4141
== ChangeLog ==
4242

43+
= Version 3.5.5 =
44+
45+
* Allow setting text to include br and code tags. #144
46+
* Add Arduino Brush. #136
47+
* Fix tags issue while alternating visual and text mode in the classic editor. #139
48+
* Fix adding classname when using SyntaxHighlighter block. #138
49+
4350
= Version 3.5.4 =
4451

4552
* Add missing shBrushYaml file.

syntaxhighlighter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Plugin Name: SyntaxHighlighter Evolved
66
Plugin URI: https://alex.blog/wordpress-plugins/syntaxhighlighter/
7-
Version: 3.5.4
7+
Version: 3.5.5
88
Description: Easily post syntax-highlighted code to your site without having to modify the code at all. Uses Alex Gorbatchev's <a href="http://alexgorbatchev.com/SyntaxHighlighter/">SyntaxHighlighter</a>. Includes a new editor block.
99
Author: Alex Mills (Viper007Bond)
1010
Author URI: https://alex.blog/
@@ -16,7 +16,7 @@
1616

1717
class SyntaxHighlighter {
1818
// All of these variables are private. Filters are provided for things that can be modified.
19-
var $pluginver = '3.5.4'; // Plugin version
19+
var $pluginver = '3.5.5'; // Plugin version
2020
var $agshver = false; // Alex Gorbatchev's SyntaxHighlighter version (dynamically set below due to v2 vs v3)
2121
var $shfolder = false; // Controls what subfolder to load SyntaxHighlighter from (v2 or v3)
2222
var $settings = array(); // Contains the user's settings

0 commit comments

Comments
 (0)