Skip to content

Commit e7ad130

Browse files
authored
Merge pull request #238 from Automattic/release/3.6.2
Release 3.6.2
2 parents 7f4283e + e165e05 commit e7ad130

File tree

5 files changed

+16
-12
lines changed

5 files changed

+16
-12
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ php:
2727

2828
# Test against these versions of WordPress.
2929
env:
30-
- WP_VERSION=5.2 # Plugin minimum version
31-
- WP_VERSION=5.3
32-
- WP_VERSION=5.4
30+
- WP_VERSION=5.7 # Plugin minimum version
31+
- WP_VERSION=5.8
32+
- WP_VERSION=5.9
3333
- WP_VERSION=latest
3434

3535
before_script:

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.6.1",
3+
"version": "3.6.2",
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: 7 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.6
6-
Tested up to: 5.8
7-
Stable tag: 3.6.1
5+
Requires at least: 5.7
6+
Tested up to: 5.9
7+
Stable tag: 3.6.2
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,10 @@ Try excluding this plugin's Javascript from any performance optimizations your s
4040

4141
== ChangeLog ==
4242

43+
= Version 3.6.2 =
44+
45+
* New: Add syntax highlight for Swift. #232
46+
4347
= Version 3.6.1 =
4448

4549
* New: Set code block language when pasting into editor. #215

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.1
7+
Version: 3.6.2
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.6
15-
Tested up to: 5.8
14+
Requires at least: 5.7
15+
Tested up to: 5.9
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.1'; // Plugin version
22+
public $pluginver = '3.6.2'; // 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)