Skip to content

Commit 6e992f4

Browse files
committed
Update version number and changelog (2.5.2 -> 2.6.0)
1 parent 06874a6 commit 6e992f4

File tree

6 files changed

+26
-12
lines changed

6 files changed

+26
-12
lines changed

Diff for: CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
### 2.6.0
4+
* Reconfigured plugin to use classloader and converted a lot of functional code into OOP code
5+
* Updated CodeMirror to version 5.10.0
6+
* Added `[code_snippets]` shortcode for embedding snippet code in a post
7+
* Fixed broken snippet search feature [[#](https://wordpress.org/support/topic/search-is-not-working-6)]
8+
* Added front-end syntax highlighting for shortcode using [PrismJS](http://prismjs.com)
9+
310
### 2.5.1
411
* Fixed: Ensure errors are fatal before catching them during error checking
512
* Fixed: Escape the snippet name on the edit page to ensure it displays correctly

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Code Snippets [![Build Status](https://travis-ci.org/sheabunge/code-snippets.png?branch=master)](https://travis-ci.org/sheabunge/code-snippets)
22

3-
* __Requires at least:__ [WordPress 3.6](http://wordpress.org/download/) or later
4-
* __Tested up to:__ WordPress 4.2.2
5-
* __Stable version:__ [2.5.1](http://downloads.wordpress.org/plugin/code-snippets.latest-stable.zip)
3+
* __Requires at least:__ [WordPress 3.6](https://wordpress.org/download/) or later
4+
* __Tested up to:__ WordPress 4.4
5+
* __Stable version:__ [2.6.0](https://downloads.wordpress.org/plugin/code-snippets.latest-stable.zip)
66
* __License:__ [MIT](license.txt)
77

88
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 for: code-snippets.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
Plugin URI: https://github.com/sheabunge/code-snippets
2020
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!
2121
Author: Shea Bunge
22-
Author URI: http://bungeshea.com
23-
Version: 2.5.1
22+
Author URI: https://bungeshea.com
23+
Version: 2.6.0
2424
License: MIT
2525
License URI: license.txt
2626
Text Domain: code-snippets

Diff for: composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
{
1414
"name": "Shea Bunge",
1515
"email": "[email protected]",
16-
"homepage": "http://bungeshea.com"
16+
"homepage": "https://bungeshea.com"
1717
}
1818
],
1919
"support": {
@@ -35,7 +35,7 @@
3535
"name": "codemirror",
3636
"version": "5.10",
3737
"dist": {
38-
"url": "http://codemirror.net/codemirror-5.10.zip",p
38+
"url": "http://codemirror.net/codemirror-5.10.zip",
3939
"type": "zip"
4040
}
4141
}

Diff for: package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "code-snippets",
3-
"version": "2.5.1",
3+
"version": "2.6.0",
44
"description": "Manage code snippets running on a WordPress-powered site through a graphical interface",
5-
"homepage": "http://bungeshea.com/plugins/code-snippets",
5+
"homepage": "https://wordpress.org/plugins/code-snippets",
66
"main": "Gruntfile.js",
77
"directories": {
88
"test": "tests"

Diff for: readme.txt

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
=== Code Snippets ===
22
Contributors: bungeshea
3-
Donate link: http://bungeshea.com/donate/
3+
Donate link: https://bungeshea.com/donate/
44
Tags: code-snippets, snippets, code, php, network, multisite
55
Requires at least: 3.6
6-
Tested up to: 4.3.2
7-
Stable tag: 2.5.1
6+
Tested up to: 4.4
7+
Stable tag: 2.6.0
88
License: MIT
99
License URI: license.txt
1010

@@ -116,6 +116,13 @@ That's fantastic! Fork the [repository on GitHub](http://github.com/sheabunge/co
116116

117117
== Changelog ==
118118

119+
= 2.6.0 =
120+
* Reconfigured plugin to use classloader and converted a lot of functional code into OOP code
121+
* Updated CodeMirror to version 5.10.0
122+
* Added `[code_snippets]` shortcode for embedding snippet code in a post
123+
* Fixed broken snippet search feature [[#](https://wordpress.org/support/topic/search-is-not-working-6)]
124+
* Added front-end syntax highlighting for shortcode using [PrismJS](http://prismjs.com)
125+
119126
= 2.5.1 =
120127
* Fixed: Ensure errors are fatal before catching them during error checking
121128
* Fixed: Escape the snippet name on the edit page to ensure it displays correctly

0 commit comments

Comments
 (0)