Skip to content

Commit 61fd26c

Browse files
authored
Release 3.7.2 (#284)
* Update version on npm files * Update readme.txt and add changelog * Update version on the main plugin file
1 parent 8d6719d commit 61fd26c

File tree

4 files changed

+116
-9
lines changed

4 files changed

+116
-9
lines changed

package-lock.json

Lines changed: 107 additions & 5 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.7.1",
3+
"version": "3.7.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: 6 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, source, sourcecode, php, syntax highlighting, syntax, highlight, highlighting, highlighter, WordPress.com
55
Requires at least: 5.7
66
Tested up to: 6.7
7-
Stable tag: 3.7.1
7+
Stable tag: 3.7.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,11 @@ Try excluding this plugin's Javascript from any performance optimizations your s
4040

4141
== ChangeLog ==
4242

43+
= Version 3.7.2 =
44+
45+
- Add more explicit license information #266
46+
- Fix escaping when language is unknown #283
47+
4348
= Version 3.7.1 =
4449

4550
- Ensure box sizing accounts for added padding #278

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.7.1
7+
Version: 3.7.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/
@@ -19,7 +19,7 @@
1919

2020
class SyntaxHighlighter {
2121
// All of these variables are private. Filters are provided for things that can be modified.
22-
public $pluginver = '3.7.1'; // Plugin version
22+
public $pluginver = '3.7.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)