From f632f90acc19aa5a9988d45839dc978375548a48 Mon Sep 17 00:00:00 2001 From: Justin Sternberg Date: Tue, 30 Aug 2016 22:59:42 -0400 Subject: [PATCH] Bump version --- cmb2-attached-posts-field.php | 16 ++++++++-------- example-field-setup.php | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cmb2-attached-posts-field.php b/cmb2-attached-posts-field.php index 7d76ce9..603c47f 100644 --- a/cmb2-attached-posts-field.php +++ b/cmb2-attached-posts-field.php @@ -3,7 +3,7 @@ * Plugin Name: CMB2 Field Type: Attached Posts * Plugin URI: https://github.com/WebDevStudios/cmb2-attached-posts * Description: Attached posts field type for CMB2. - * Version: 1.2.3 + * Version: 1.2.4 * Author: WebDevStudios * Author URI: http://webdevstudios.com * License: GPLv2+ @@ -19,7 +19,7 @@ * @author WebDevStudios * @copyright 2016 WebDevStudios * @license GPL-2.0+ - * @version 1.2.3 + * @version 1.2.4 * @link https://github.com/WebDevStudios/cmb2-attached-posts * @since 1.2.3 */ @@ -46,7 +46,7 @@ * Loader versioning: http://jtsternberg.github.io/wp-lib-loader/ */ -if ( ! class_exists( 'WDS_CMB2_Attached_Posts_Field_123', false ) ) { +if ( ! class_exists( 'WDS_CMB2_Attached_Posts_Field_124', false ) ) { /** * Versioned loader class-name @@ -57,18 +57,18 @@ * @package WDS_CMB2_Attached_Posts_Field * @author WebDevStudios * @license GPL-2.0+ - * @version 1.2.3 + * @version 1.2.4 * @link https://github.com/WebDevStudios/cmb2-attached-posts * @since 1.2.3 */ - class WDS_CMB2_Attached_Posts_Field_123 { + class WDS_CMB2_Attached_Posts_Field_124 { /** * WDS_CMB2_Attached_Posts_Field version number * @var string * @since 1.2.3 */ - const VERSION = '1.2.3'; + const VERSION = '1.2.4'; /** * Current version hook priority. @@ -77,7 +77,7 @@ class WDS_CMB2_Attached_Posts_Field_123 { * @var int * @since 1.2.3 */ - const PRIORITY = 9999; + const PRIORITY = 9998; /** * Starts the version checking process. @@ -155,5 +155,5 @@ public function include_lib() { } // Kick it off. - new WDS_CMB2_Attached_Posts_Field_123; + new WDS_CMB2_Attached_Posts_Field_124; } diff --git a/example-field-setup.php b/example-field-setup.php index f8865fb..5f2d3a3 100644 --- a/example-field-setup.php +++ b/example-field-setup.php @@ -46,7 +46,7 @@ function cmb2_attached_posts_field_metaboxes_example() { 'options' => array( 'show_thumbnails' => true, // Show thumbnails on the left 'filter_boxes' => true, // Show a text box for filtering the results - 'query_users' => true, + 'query_users' => true, // Do users instead of posts/custom-post-types. ), ) );