Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsternberg committed Aug 31, 2016
1 parent e8bc5aa commit f632f90
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions cmb2-attached-posts-field.php
Original file line number Diff line number Diff line change
Expand Up @@ -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+
Expand All @@ -19,7 +19,7 @@
* @author WebDevStudios <[email protected]>
* @copyright 2016 WebDevStudios <[email protected]>
* @license GPL-2.0+
* @version 1.2.3
* @version 1.2.4
* @link https://github.com/WebDevStudios/cmb2-attached-posts
* @since 1.2.3
*/
Expand All @@ -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
Expand All @@ -57,18 +57,18 @@
* @package WDS_CMB2_Attached_Posts_Field
* @author WebDevStudios <[email protected]>
* @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.
Expand All @@ -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.
Expand Down Expand Up @@ -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;
}
2 changes: 1 addition & 1 deletion example-field-setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
),
) );

Expand Down

0 comments on commit f632f90

Please sign in to comment.