diff --git a/CHANGELOG.md b/CHANGELOG.md index f97edc8..33ce44c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.9.4] - 2016-02-05 + +### Fixed +- Fix for taxonomy names that may contain characters other than lowercase and underscores (e.g. uppercase). + ## [0.9.3] - 2016-01-21 ### Fixed @@ -193,7 +198,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Added - Original Release - Works with WordPress 2.9.1. -[Unreleased]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.3...HEAD +[Unreleased]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.4...HEAD +[0.9.4]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.3...0.9.4 [0.9.3]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.2...0.9.3 [0.9.2]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.1...0.9.2 [0.9.1]: https://github.com/benhuson/Taxonomy-Images/compare/0.9...0.9.1 diff --git a/README.md b/README.md index 345e3b8..0a9252f 100644 --- a/README.md +++ b/README.md @@ -221,6 +221,9 @@ Installation Upgrade Notice -------------- +### 0.9.4 +Fix for taxonomy names that may contain characters other than lowercase and underscores (e.g. uppercase). + ### 0.9.3 Fix post permissions error when using media modal. diff --git a/readme.txt b/readme.txt index aa26e97..c53e730 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted Tags: taxonomy, tag, category, term, image, upload, media Requires at least: 3.4 Tested up to: 4.4.1 -Stable tag: 0.9.3 +Stable tag: 0.9.4 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -209,6 +209,9 @@ The original author of this plugin, Michael Fields, released a handful of plugin == Upgrade Notice == += 0.9.4 = +Fix for taxonomy names that may contain characters other than lowercase and underscores (e.g. uppercase). + = 0.9.3 = Fix post permissions error when using media modal. diff --git a/taxonomy-images.php b/taxonomy-images.php index 5b4fac5..0d3e5c4 100644 --- a/taxonomy-images.php +++ b/taxonomy-images.php @@ -4,7 +4,7 @@ Plugin Name: Taxonomy Images Plugin URI: https://github.com/benhuson/Taxonomy-Images Description: Associate images from your media library to categories, tags and custom taxonomies. -Version: 0.9.3 +Version: 0.9.4 Author: Michael Fields, Ben Huson Author URI: https://github.com/benhuson License: GNU General Public License v2 or later @@ -40,7 +40,7 @@ * @alter 0.7.4 */ function taxonomy_image_plugin_version() { - return '0.9.3'; + return '0.9.4'; }