diff --git a/changelog.txt b/changelog.txt index 4b930b28..093d36a3 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,9 @@ == SportsPress Changelog == += 2.6.13 = +* Fix - Missing functionality with Gutenberg enabled. +* Fix - Enable API endpoints with WordPress 5.0 and Gutenberg. + = 2.6.12 = * Tweak - Match styling of date row in countdown. * Fix - Calculated totals in player performance array missing for custom templates. diff --git a/includes/class-sp-post-types.php b/includes/class-sp-post-types.php index d923822f..23b5a8f5 100644 --- a/includes/class-sp-post-types.php +++ b/includes/class-sp-post-types.php @@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) { * Registers post types and taxonomies * * @class SP_Post_types - * @version 2.6.11 + * @version 2.6.13 * @package SportsPress/Classes * @category Class * @author ThemeBoy diff --git a/readme.txt b/readme.txt index 865447db..b66674f4 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.12 +Stable tag: 2.6.13 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -237,6 +237,10 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate == Changelog == += 2.6.13 = +* Fix - Missing functionality with Gutenberg enabled. +* Fix - Enable API endpoints with WordPress 5.0 and Gutenberg. + = 2.6.12 = * Tweak - Match styling of date row in countdown. * Fix - Calculated totals in player performance array missing for custom templates. diff --git a/sportspress.php b/sportspress.php index 0a66ac6b..3c205510 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.12 + * Version: 2.6.13 * 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.12 + * @version 2.6.13 */ final class SportsPress { /** * @var string */ - public $version = '2.6.12'; + public $version = '2.6.13'; /** * @var SportsPress The single instance of the class