Skip to content

Commit

Permalink
Update version number and chanelog for v2.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sheabunge committed Sep 9, 2021
1 parent faed5e2 commit 018e965
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 13 deletions.
15 changes: 9 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# Changelog

## 2.14.2 (unreleased)
* Prevent network snippets table from being created on single-site installs.
## 2.14.2 (9 Sep 2021)
* Fixed: Prevent network snippets table from being created on single-site installs.
* Added translations:
- Spanish by [Ibidem Group](https://www.ibidemgroup.com)
- Urdu by [Samuel Badree](https://mobilemall.pk/)
- Greek by [Toni Bishop from Jrop](https://www.jrop.com/)

- Spanish by [Ibidem Group](https://www.ibidemgroup.com)
- Urdu by [Samuel Badree](https://mobilemall.pk/)
- Greek by [Toni Bishop from Jrop](https://www.jrop.com/)
* Added: Support for `:class` syntax to the code validator.
* Added: PHP8 support to the code linter.
* Added: Color picker feature to the code editor.
* Added: Failsafe to prevent multiple versions of Code Snippets from running simultaneously.

## 2.14.1 (10 Mar 2021)
* Added: Czech translation by [Lukáš Tesař](https://github.com/atomicf4ll).
Expand Down
6 changes: 3 additions & 3 deletions code-snippets.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @author Shea Bunge <[email protected]>
* @copyright 2012-2021 Shea Bunge
* @license MIT http://opensource.org/licenses/MIT
* @version 2.14.1
* @version 2.14.2
* @link https://github.com/sheabunge/code-snippets
*/

Expand All @@ -19,7 +19,7 @@
Description: An easy, clean and simple way to run code snippets on your site. No need to edit to your theme's functions.php file again!
Author: Code Snippets Pro
Author URI: https://codesnippets.pro
Version: 2.14.1
Version: 2.14.2
License: MIT
License URI: license.txt
Text Domain: code-snippets
Expand Down Expand Up @@ -110,7 +110,7 @@ function code_snippets() {
static $plugin;

if ( is_null( $plugin ) ) {
$plugin = new Code_Snippets( '2.14.1', __FILE__ );
$plugin = new Code_Snippets( '2.14.2', __FILE__ );
}

return $plugin;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "code-snippets",
"version": "2.14.1",
"version": "2.14.2",
"description": "Manage code snippets running on a WordPress-powered site through a graphical interface",
"homepage": "https://wordpress.org/plugins/code-snippets",
"main": "gulpfile.babel.js",
Expand Down
16 changes: 15 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://sheabunge.com/donate
Tags: snippets, functions, code, php, multisite
License: MIT
License URI: license.txt
Stable tag: 2.14.1
Stable tag: 2.14.2
Tested up to: 5.8

An easy, clean and simple way to run code snippets on your site.
Expand Down Expand Up @@ -122,6 +122,17 @@ The best way to do this is to fork the [repository on GitHub](https://github.com

== Changelog ==

= 2.14.2 (9 Sep 2021) =
* Fixed: Prevent network snippets table from being created on single-site installs.
* Added translations:
- Spanish by [Ibidem Group](https://www.ibidemgroup.com)
- Urdu by [Samuel Badree](https://mobilemall.pk/)
- Greek by [Toni Bishop from Jrop](https://www.jrop.com/)
* Added: Support for `:class` syntax to the code validator.
* Added: PHP8 support to the code linter.
* Added: Color picker feature to the code editor.
* Added: Failsafe to prevent multiple versions of Code Snippets from running simultaneously.

= 2.14.1 (10 Mar 2021) =
* Added: Czech translation by [Lukáš Tesař](https://github.com/atomicf4ll).
* Fixed: Code validator now supports `function_exists` and `class_exists` checks.
Expand Down Expand Up @@ -241,6 +252,9 @@ The best way to do this is to fork the [repository on GitHub](https://github.com

== Upgrade Notice ==

= 2.14.2 =
New color picker and code validator improvements.

= 2.14.0 =
Security update, last modified dates, and other improvements

Expand Down

0 comments on commit 018e965

Please sign in to comment.