Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
1.8 -> 1.8.1
  • Loading branch information
sheabunge committed Jul 29, 2013
1 parent 565844b commit d6f9380
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 1.8.1
* Compiled all CodeMirror scripts into a single file
* Use Sass + Compass for CSS
* Use Grunt for build automation
* Minify CSS
* Fixed code typo that was breaking export files
* Updated CodeMirror to 3.15
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

* __Requires at least:__ [WordPress 3.3](http://wordpress.org/download/) or later
* __Tested up to:__ WordPress 3.6
* __Stable version:__ [1.8](http://downloads.wordpress.org/plugin/code-snippets.latest-stable.zip)
* __Stable version:__ [1.8.1](http://downloads.wordpress.org/plugin/code-snippets.latest-stable.zip)
* __License:__ [MIT](license.txt)

An easy, clean and simple way to add code snippets to your site.
Expand Down
8 changes: 4 additions & 4 deletions code-snippets.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* contribute to the localization, please see http://code-snippets.bungeshea.com
*
* @package Code_Snippets
* @version 1.8
* @version 1.8.1
* @author Shea Bunge <http://bungeshea.com/>
* @copyright Copyright (c) 2012-2013, Shea Bunge
* @link http://code-snippets.bungeshea.com
Expand All @@ -20,7 +20,7 @@
* 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: 1.8
* Version: 1.8.1
* License: MIT
* License URI: license.txt
* Text Domain: code-snippets
Expand Down Expand Up @@ -58,7 +58,7 @@ final class Code_Snippets {
* @access public
* @var string A PHP-standardized version number string
*/
public $version = '1.8';
public $version = '1.8.1';

/**
* Variables to hold plugin paths
Expand Down Expand Up @@ -712,7 +712,7 @@ public function escape_snippet_data( $snippet ) {
$snippet->code = ltrim( $snippet->code, '<?php' );
$snippet->code = ltrim( $snippet->code, '<?' );
$snippet->code = rtrim( $snippet->code, '?>' );

/* escape the data */
$snippet->name = esc_sql( $snippet->name );
$snippet->description = esc_sql( $snippet->description );
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "code-snippets",
"title": "Code Snippets",
"description": "An easy, clean and simple way to add code snippets to a WordPress-powered site.",
"version": "1.8.0",
"version": "1.8.1",
"homepage": "http://code-snippets.bungeshea.com",
"author": {
"name": "Shea Bunge",
Expand Down
13 changes: 12 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: http://code-snippets.bungeshea.com/donate/
Tags: code-snippets, snippets, code, php, network, multisite
Requires at least: 3.3
Tested up to: 3.6
Stable tag: 1.8
Stable tag: 1.8.1
License: MIT
License URI: license.txt

Expand Down Expand Up @@ -111,6 +111,14 @@ That's fantastic! Join me on [GitHub](https://github.com/bungeshea/code-snippets

== Changelog ==

= 1.8.1 =
* Compiled all CodeMirror scripts into a single file
* Use Sass + Compass for CSS
* Use Grunt for build automation
* Minify CSS
* Fixed code typo that was breaking export files
* Updated CodeMirror to 3.15

= 1.8 =
* Allow no snippet name or code to be set
* Prevented an error on fresh multisite installations
Expand Down Expand Up @@ -220,6 +228,9 @@ Plugin updates will be posted on the [plugin's homepage](http://code-snippets.bu

== Upgrade Notice ==

= 1.8.1 =
Minimize CSS and JS; updated CodeMirror; fixed export files

= 1.8 =
Setting a snippet name and code are now optional; better table creation method; changes to API; bug fixes

Expand Down

0 comments on commit d6f9380

Please sign in to comment.