Skip to content

Commit 76f3ec2

Browse files
authored
Merge pull request #226 from Automattic/release/3.6.1
Release 3.6.1
2 parents 5069797 + 639527a commit 76f3ec2

File tree

5 files changed

+66
-17
lines changed

5 files changed

+66
-17
lines changed

composer.lock

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

package-lock.json

Lines changed: 31 additions & 9 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": "syntaxhighlighter",
3-
"version": "3.6.0",
3+
"version": "3.6.1",
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: 12 additions & 3 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: 5.2
6-
Tested up to: 5.7
7-
Stable tag: 3.6.0
5+
Requires at least: 5.6
6+
Tested up to: 5.8
7+
Stable tag: 3.6.1
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,15 @@ Try excluding this plugin's Javascript from any performance optimizations your s
4040

4141
== ChangeLog ==
4242

43+
= Version 3.6.1 =
44+
45+
* New: Set code block language when pasting into editor. #215
46+
* New: Add syntax highlight for Haskell. #210
47+
* New: Display the list of available brushes. #221
48+
* Fix: Line alignment for bootstrap themes. #222
49+
* Fix: Add space around code. #223
50+
* Fix: XML brush - use the last occurrence of the tag. #225
51+
4352
= Version 3.6.0 =
4453

4554
* New: Add ```language shortcut. #180

syntaxhighlighter.php

Lines changed: 4 additions & 4 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.6.0
7+
Version: 3.6.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
14-
Requires at least: 5.2
15-
Tested up to: 5.7
14+
Requires at least: 5.6
15+
Tested up to: 5.8
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-
public $pluginver = '3.6.0'; // Plugin version
22+
public $pluginver = '3.6.1'; // Plugin version
2323
public $agshver = false; // Alex Gorbatchev's SyntaxHighlighter version (dynamically set below due to v2 vs v3)
2424
public $shfolder = false; // Controls what subfolder to load SyntaxHighlighter from (v2 or v3)
2525
public $settings = array(); // Contains the user's settings

0 commit comments

Comments
 (0)