diff --git a/changelog.txt b/changelog.txt index 093d36a3..01ec474a 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,8 @@ == SportsPress Changelog == += 2.6.14 = +* Fix - API endpoints for secondary post types. + = 2.6.13 = * Fix - Missing functionality with Gutenberg enabled. * Fix - Enable API endpoints with WordPress 5.0 and Gutenberg. diff --git a/modules/sportspress-calendars.php b/modules/sportspress-calendars.php index 6fecf222..531e4635 100644 --- a/modules/sportspress-calendars.php +++ b/modules/sportspress-calendars.php @@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/ Description: Add event calendars to SportsPress. Author: ThemeBoy Author URI: http://themeboy.com/ -Version: 2.6.11 +Version: 2.6.14 */ // Exit if accessed directly @@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_Calendars' ) ) : * Main SportsPress Calendars Class * * @class SportsPress_Calendars - * @version 2.6.11 + * @version 2.6.14 */ class SportsPress_Calendars { @@ -51,7 +51,7 @@ class SportsPress_Calendars { */ private function define_constants() { if ( !defined( 'SP_CALENDARS_VERSION' ) ) - define( 'SP_CALENDARS_VERSION', '2.6.11' ); + define( 'SP_CALENDARS_VERSION', '2.6.14' ); if ( !defined( 'SP_CALENDARS_URL' ) ) define( 'SP_CALENDARS_URL', plugin_dir_url( __FILE__ ) ); diff --git a/modules/sportspress-league-tables.php b/modules/sportspress-league-tables.php index abcdb8b7..da44a831 100644 --- a/modules/sportspress-league-tables.php +++ b/modules/sportspress-league-tables.php @@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/ Description: Add league tables to SportsPress. Author: ThemeBoy Author URI: http://themeboy.com/ -Version: 2.6.11 +Version: 2.6.14 */ // Exit if accessed directly @@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_League_Tables' ) ) : * Main SportsPress League Tables Class * * @class SportsPress_League_Tables - * @version 2.6.11 + * @version 2.6.14 */ class SportsPress_League_Tables { @@ -48,7 +48,7 @@ class SportsPress_League_Tables { */ private function define_constants() { if ( !defined( 'SP_LEAGUE_TABLES_VERSION' ) ) - define( 'SP_LEAGUE_TABLES_VERSION', '2.6.11' ); + define( 'SP_LEAGUE_TABLES_VERSION', '2.6.14' ); if ( !defined( 'SP_LEAGUE_TABLES_URL' ) ) define( 'SP_LEAGUE_TABLES_URL', plugin_dir_url( __FILE__ ) ); diff --git a/modules/sportspress-officials.php b/modules/sportspress-officials.php index 54a76cd1..77451f99 100644 --- a/modules/sportspress-officials.php +++ b/modules/sportspress-officials.php @@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/ Description: Add officials to SportsPress. Author: ThemeBoy Author URI: http://themeboy.com/ -Version: 2.6.11 +Version: 2.6.14 */ // Exit if accessed directly @@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_Officials' ) ) : * Main SportsPress Officials Class * * @class SportsPress_Officials - * @version 2.6.11 + * @version 2.6.14 */ class SportsPress_Officials { @@ -66,7 +66,7 @@ class SportsPress_Officials { */ private function define_constants() { if ( !defined( 'SP_OFFICIALS_VERSION' ) ) - define( 'SP_OFFICIALS_VERSION', '2.6.11' ); + define( 'SP_OFFICIALS_VERSION', '2.6.14' ); if ( !defined( 'SP_OFFICIALS_URL' ) ) define( 'SP_OFFICIALS_URL', plugin_dir_url( __FILE__ ) ); diff --git a/modules/sportspress-player-lists.php b/modules/sportspress-player-lists.php index 61bb6e06..4adecbc6 100644 --- a/modules/sportspress-player-lists.php +++ b/modules/sportspress-player-lists.php @@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/ Description: Add player lists to SportsPress. Author: ThemeBoy Author URI: http://themeboy.com/ -Version: 2.6.11 +Version: 2.6.14 */ // Exit if accessed directly @@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_Player_Lists' ) ) : * Main SportsPress Player Lists Class * * @class SportsPress_Player_Lists - * @version 2.6.11 + * @version 2.6.14 */ class SportsPress_Player_Lists { @@ -48,7 +48,7 @@ class SportsPress_Player_Lists { */ private function define_constants() { if ( !defined( 'SP_PLAYER_LISTS_VERSION' ) ) - define( 'SP_PLAYER_LISTS_VERSION', '2.6.11' ); + define( 'SP_PLAYER_LISTS_VERSION', '2.6.14' ); if ( !defined( 'SP_PLAYER_LISTS_URL' ) ) define( 'SP_PLAYER_LISTS_URL', plugin_dir_url( __FILE__ ) ); diff --git a/readme.txt b/readme.txt index b66674f4..4acb433c 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: calendars, club, club management, esports, events, fixtures, leagues, leag Donate link: http://tboy.co/donate Requires at least: 3.8 Tested up to: 5.0 -Stable tag: 2.6.13 +Stable tag: 2.6.14 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -237,6 +237,9 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate == Changelog == += 2.6.14 = +* Fix - API endpoints for secondary post types. + = 2.6.13 = * Fix - Missing functionality with Gutenberg enabled. * Fix - Enable API endpoints with WordPress 5.0 and Gutenberg. diff --git a/sportspress.php b/sportspress.php index 3c205510..608c00db 100644 --- a/sportspress.php +++ b/sportspress.php @@ -3,7 +3,7 @@ * Plugin Name: SportsPress * Plugin URI: http://themeboy.com/sportspress/ * Description: Manage your club and its players, staff, events, league tables, and player lists. - * Version: 2.6.13 + * Version: 2.6.14 * Author: ThemeBoy * Author URI: http://themeboy.com * Requires at least: 3.8 @@ -26,14 +26,14 @@ if ( ! class_exists( 'SportsPress' ) ) : * Main SportsPress Class * * @class SportsPress - * @version 2.6.13 + * @version 2.6.14 */ final class SportsPress { /** * @var string */ - public $version = '2.6.13'; + public $version = '2.6.14'; /** * @var SportsPress The single instance of the class