diff --git a/README.md b/README.md index ca0093a..4cd8374 100644 --- a/README.md +++ b/README.md @@ -184,6 +184,12 @@ _Note:_ because the entry header applies to all posts on a page, such as a blog ## Changelog +### 2.1.0 +* added HTML5 headline support +* added lots of filters: for large image output, descriptions, titles, body clases, backstretch image settings +* fixed image assignment process to correctly handle term, post type featured images as intermediate fallback images +* bugfix: corrected output if term image has been deleted + ### 2.0.0 - 2015-02-03 * added featured images to taxonomy terms! * added featured images to custom post type archive pages! diff --git a/display-featured-image-genesis.php b/display-featured-image-genesis.php index 960cd60..a527665 100644 --- a/display-featured-image-genesis.php +++ b/display-featured-image-genesis.php @@ -12,7 +12,7 @@ * Plugin Name: Display Featured Image for Genesis * Plugin URI: http://github.com/robincornett/display-featured-image-genesis/ * Description: This plugin works within the Genesis Framework, to display featured images in beautiful and dynamic ways. - * Version: 2.0.0 + * Version: 2.1.0 * Author: Robin Cornett * Author URI: http://robincornett.com * License: GPL-2.0+ diff --git a/includes/class-displayfeaturedimagegenesis-common.php b/includes/class-displayfeaturedimagegenesis-common.php index c64742c..6178da6 100644 --- a/includes/class-displayfeaturedimagegenesis-common.php +++ b/includes/class-displayfeaturedimagegenesis-common.php @@ -13,7 +13,7 @@ class Display_Featured_Image_Genesis_Common { * @var string * @since 1.4.3 */ - public static $version = '2.0.1'; + public static $version = '2.1.0'; protected static $post_types; diff --git a/includes/helper-functions.php b/includes/helper-functions.php index 2dbacf8..6b8701c 100644 --- a/includes/helper-functions.php +++ b/includes/helper-functions.php @@ -12,6 +12,8 @@ /** * gets the term image ID * @return image_id reusable function to get a post's term image, if it exists + * + * @since 2.1.0 */ function display_featured_image_genesis_get_term_image() { $taxonomies = get_taxonomies(); diff --git a/readme.txt b/readme.txt index 1fe8e82..dc73b42 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Donate link: https://robincornett.com/donate/ Tags: backstretch, featured image, featured images, genesis, studiopress, post thumbnails, featured image rss, rss Requires at least: 3.8 Tested up to: 4.1 -Stable tag: 2.0.0 +Stable tag: 2.1.0 License: GPL-2.0+ License URI: http://www.gnu.org/licenses/gpl-2.0.txt @@ -151,6 +151,12 @@ New feature! Add featured images to taxonomy terms and custom post type archives == Changelog == += 2.1.0 = +* added HTML5 headline support +* added lots of filters: for large image output, descriptions, titles, body clases, backstretch image settings +* fixed image assignment process to correctly handle term, post type featured images as intermediate fallback images +* bugfix: corrected output if term image has been deleted + = 2.0.0 = * added featured images to taxonomy terms! * added featured images to custom post type archive pages!