Skip to content

Commit cf2a9b5

Browse files
authored
Merge pull request #190 from Automattic/release/3.6.0-beta.1
Release/3.6.0 beta.1
2 parents 171b980 + 2ce6785 commit cf2a9b5

File tree

4 files changed

+23
-7
lines changed

4 files changed

+23
-7
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.5",
3+
"version": "3.6.0",
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: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
Contributors: Viper007Bond, automattic, donncha
33
Donate link: https://alex.blog/2019/03/13/in-memory-of-alex-donation-link-update/
44
Tags: code, source, sourcecode, php, syntax highlighting, syntax, highlight, highlighting, highlighter, WordPress.com
5-
Requires at least: 4.2.3
5+
Requires at least: 5.2
66
Tested up to: 5.6
7-
Stable tag: 3.5.5
7+
Stable tag: 3.6.0
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,22 @@ Try excluding this plugin's Javascript from any performance optimizations your s
4040

4141
== ChangeLog ==
4242

43+
= Version 3.6.0 =
44+
45+
* New: Add ```language shortcut. #180
46+
* New: Add block alignment support. #179
47+
* New: Add language selector to block toolbar. #172
48+
* Fix: Content attribute selector. #178
49+
* Fix: Escaping for shortcodes and URLs. #177
50+
* Fix: Escaping issues with HTML entities. #160
51+
* Fix: MatLab brush key in brush map. #188
52+
* Fix: Remove <code> wrapper. #163
53+
* Fix: escaping for non-admin authored posts. #187
54+
* Tweak: Bump "tested up to" version. #183
55+
* Tweak: Refactor block JS code. #171
56+
* Tweak: Update plugin tags. #181
57+
* Tweak: Use tab size from plugin settings in block editor. #174
58+
4359
= Version 3.5.5 =
4460

4561
* Allow setting text to include br and code tags. #144

syntaxhighlighter.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@
44
55
Plugin Name: SyntaxHighlighter Evolved
66
Plugin URI: https://alex.blog/wordpress-plugins/syntaxhighlighter/
7-
Version: 3.5.5
7+
Version: 3.6.0-beta.1
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/
1111
Text Domain: syntaxhighlighter
1212
License: GPL2
1313
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1414
Requires at least: 5.2
15-
Tested up to: 5.4
15+
Tested up to: 5.6
1616
Requires PHP: 7.0
1717
1818
**************************************************************************/
1919

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

0 commit comments

Comments
 (0)