diff --git a/CHANGELOG.md b/CHANGELOG.md index a86ce211..7bc7b23b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### 2.6.0 +* Reconfigured plugin to use classloader and converted a lot of functional code into OOP code +* Updated CodeMirror to version 5.10.0 +* Added `[code_snippets]` shortcode for embedding snippet code in a post +* Fixed broken snippet search feature [[#](https://wordpress.org/support/topic/search-is-not-working-6)] +* Added front-end syntax highlighting for shortcode using [PrismJS](http://prismjs.com) + ### 2.5.1 * Fixed: Ensure errors are fatal before catching them during error checking * Fixed: Escape the snippet name on the edit page to ensure it displays correctly diff --git a/README.md b/README.md index 6c909de9..c000445d 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Code Snippets [![Build Status](https://travis-ci.org/sheabunge/code-snippets.png?branch=master)](https://travis-ci.org/sheabunge/code-snippets) -* __Requires at least:__ [WordPress 3.6](http://wordpress.org/download/) or later -* __Tested up to:__ WordPress 4.2.2 -* __Stable version:__ [2.5.1](http://downloads.wordpress.org/plugin/code-snippets.latest-stable.zip) +* __Requires at least:__ [WordPress 3.6](https://wordpress.org/download/) or later +* __Tested up to:__ WordPress 4.4 +* __Stable version:__ [2.6.0](https://downloads.wordpress.org/plugin/code-snippets.latest-stable.zip) * __License:__ [MIT](license.txt) Code Snippets is an easy, clean and simple way to add code snippets to your site. It removes the need to add custom snippets to your theme theme's `functions.php` file. diff --git a/code-snippets.php b/code-snippets.php index 313cdea4..b6d9c409 100644 --- a/code-snippets.php +++ b/code-snippets.php @@ -19,8 +19,8 @@ Plugin URI: https://github.com/sheabunge/code-snippets Description: An easy, clean and simple way to add code snippets to your site. No need to edit to your theme's functions.php file again! Author: Shea Bunge -Author URI: http://bungeshea.com -Version: 2.5.1 +Author URI: https://bungeshea.com +Version: 2.6.0 License: MIT License URI: license.txt Text Domain: code-snippets diff --git a/composer.json b/composer.json index 511ed29a..924a7e92 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ { "name": "Shea Bunge", "email": "info@bungeshea.com", - "homepage": "http://bungeshea.com" + "homepage": "https://bungeshea.com" } ], "support": { @@ -35,7 +35,7 @@ "name": "codemirror", "version": "5.10", "dist": { - "url": "http://codemirror.net/codemirror-5.10.zip",p + "url": "http://codemirror.net/codemirror-5.10.zip", "type": "zip" } } diff --git a/package.json b/package.json index 6c3a1046..9de6ab76 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "code-snippets", - "version": "2.5.1", + "version": "2.6.0", "description": "Manage code snippets running on a WordPress-powered site through a graphical interface", - "homepage": "http://bungeshea.com/plugins/code-snippets", + "homepage": "https://wordpress.org/plugins/code-snippets", "main": "Gruntfile.js", "directories": { "test": "tests" diff --git a/readme.txt b/readme.txt index fb4726b6..18b7e8ea 100644 --- a/readme.txt +++ b/readme.txt @@ -1,10 +1,10 @@ === Code Snippets === Contributors: bungeshea -Donate link: http://bungeshea.com/donate/ +Donate link: https://bungeshea.com/donate/ Tags: code-snippets, snippets, code, php, network, multisite Requires at least: 3.6 -Tested up to: 4.3.2 -Stable tag: 2.5.1 +Tested up to: 4.4 +Stable tag: 2.6.0 License: MIT License URI: license.txt @@ -116,6 +116,13 @@ That's fantastic! Fork the [repository on GitHub](http://github.com/sheabunge/co == Changelog == += 2.6.0 = +* Reconfigured plugin to use classloader and converted a lot of functional code into OOP code +* Updated CodeMirror to version 5.10.0 +* Added `[code_snippets]` shortcode for embedding snippet code in a post +* Fixed broken snippet search feature [[#](https://wordpress.org/support/topic/search-is-not-working-6)] +* Added front-end syntax highlighting for shortcode using [PrismJS](http://prismjs.com) + = 2.5.1 = * Fixed: Ensure errors are fatal before catching them during error checking * Fixed: Escape the snippet name on the edit page to ensure it displays correctly