Skip to content

Commit

Permalink
Update version number and changelog (2.5.2 -> 2.6.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
sheabunge committed Dec 31, 2015
1 parent 06874a6 commit 6e992f4
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions code-snippets.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
{
"name": "Shea Bunge",
"email": "info@bungeshea.com",
"homepage": "http://bungeshea.com"
"homepage": "https://bungeshea.com"
}
],
"support": {
Expand All @@ -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"
}
}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
13 changes: 10 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 6e992f4

Please sign in to comment.