From b7484547f5e2d5286fa2d3e1f0aad5e9cba9cc32 Mon Sep 17 00:00:00 2001 From: Shea Bunge Date: Mon, 29 Apr 2013 10:19:28 +1000 Subject: [PATCH] Update changelog; bump stable tag --- CHANGELOG.md | 3 +++ README.md | 2 +- code-snippets.php | 8 ++++---- readme.txt | 8 +++++++- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e948746f..fb3b415e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 1.7.1.1 +* Fixed a bug with custom capabilities and admin menus + ## 1.7.1 * Fix a bug with snippet being set as deactivated when saved * Updated PHP Documentation completely. [[View online](http://bungeshea.github.io/code-snippets/api)] diff --git a/README.md b/README.md index ef278e01..be1be9af 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ * __Requires at least:__ [WordPress 3.3](http://wordpress.org/download/) or later * __Tested up to:__ WordPress 3.6 -* __Stable version:__ [1.7.1](http://downloads.wordpress.org/plugin/code-snippets.latest-stable.zip) +* __Stable version:__ [1.7.1.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. diff --git a/code-snippets.php b/code-snippets.php index 77a66b18..b3f69432 100644 --- a/code-snippets.php +++ b/code-snippets.php @@ -16,7 +16,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.7.1 + * Version: 1.7.1.1 * License: MIT * License URI: license.txt * Text Domain: code-snippets @@ -53,7 +53,7 @@ final class Code_Snippets { * @access public * @var string A PHP-standardized version number string */ - public $version = '1.7.1'; + public $version = '1.7.1.1'; /** * Variables to hold plugin paths @@ -518,7 +518,7 @@ function setup_ms_roles( $install = true ) { * @param string $do_what The task to check against. * @return bool Whether the current user can perform this task or not * - * @since 1.7.2 Moved logic to $this->get_cap method + * @since 1.7.1.1 Moved logic to $this->get_cap() method * @since 1.7.1 * @access public */ @@ -533,7 +533,7 @@ public function user_can( $do_what ) { * If multisite, checks if *Enable Administration Menus: Snippets* is active * under the *Settings > Network Settings* network admin menu * - * @since 1.7.2 + * @since 1.7.1.1 * @access public */ public function get_cap( $do_what ) { diff --git a/readme.txt b/readme.txt index 7d9a9aaa..923155ce 100644 --- a/readme.txt +++ b/readme.txt @@ -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.7.1 +Stable tag: 1.7.1.1 License: MIT License URI: license.txt @@ -111,6 +111,9 @@ That's fantastic! Join me on [GitHub](https://github.com/bungeshea/code-snippets == Changelog == += 1.7.1.1 = +* Fix a minor bug with custom capabilities and admin menus + = 1.7.1 = * Fix a bug with snippet being set as deactivated when saved * Updated PHP Documentation completely. [[View online](http://bungeshea.github.io/code-snippets/api)] @@ -204,6 +207,9 @@ Plugin updates will be posted on the [plugin's homepage](http://code-snippets.bu == Upgrade Notice == += 1.7.1.1 = +Fixes a minor bug with custom capabilities and admin menus + = 1.7.1 = Added German translation thanks to David Decker; bug fixes and improvements