diff --git a/changelog.txt b/changelog.txt index fc50e6a0..15a97b3e 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,11 @@ == SportsPress Changelog == += 2.7.17 = +* Fix - PHP 8.2.x deprecated code warnings. +* Fix - Next team not working in shortcodes. +* Fix - Links rendering in event specs. +* Localization - Update translatable strings. + = 2.7.16 = * Update - WP version tested up to 6.1. * Update - Leaflet version to 1.8.0. diff --git a/includes/admin/class-sp-admin-permalink-settings.php b/includes/admin/class-sp-admin-permalink-settings.php index 57148223..b347829b 100644 --- a/includes/admin/class-sp-admin-permalink-settings.php +++ b/includes/admin/class-sp-admin-permalink-settings.php @@ -5,7 +5,7 @@ * @author ThemeBoy * @category Admin * @package SportsPress/Admin - * @version 2.7.13 + * @version 2.7.17 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/includes/class-sp-league-table.php b/includes/class-sp-league-table.php index f677de51..6453e0a9 100644 --- a/includes/class-sp-league-table.php +++ b/includes/class-sp-league-table.php @@ -5,7 +5,7 @@ * The SportsPress league table class handles individual league table data. * * @class SP_League_Table - * @version 2.7.9 + * @version 2.7.17 * @package SportsPress/Classes * @category Class * @author ThemeBoy diff --git a/includes/sp-core-functions.php b/includes/sp-core-functions.php index 857f8724..9a07b49a 100644 --- a/includes/sp-core-functions.php +++ b/includes/sp-core-functions.php @@ -7,7 +7,7 @@ * @author ThemeBoy * @category Core * @package SportsPress/Functions - * @version 2.7.15 + * @version 2.7.17 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/modules/sportspress-next-team-preset.php b/modules/sportspress-next-team-preset.php index 529f70b1..f4313783 100644 --- a/modules/sportspress-next-team-preset.php +++ b/modules/sportspress-next-team-preset.php @@ -5,7 +5,7 @@ * @author ThemeBoy * @category Modules * @package SportsPress/Modules - * @version 2.7.9 + * @version 2.7.17 */ // Exit if accessed directly @@ -19,7 +19,7 @@ if ( ! class_exists( 'SportsPress_Next_Team_Preset' ) ) : * Main SportsPress Next Team Preset Class * * @class SportsPress_Next_Team_Preset - * @version 2.6.3 + * @version 2.7.17 */ class SportsPress_Next_Team_Preset { @@ -49,7 +49,7 @@ if ( ! class_exists( 'SportsPress_Next_Team_Preset' ) ) : */ private function define_constants() { if ( ! defined( 'SP_NEXT_TEAM_PRESET_VERSION' ) ) { - define( 'SP_NEXT_TEAM_PRESET_VERSION', '2.6.3' ); + define( 'SP_NEXT_TEAM_PRESET_VERSION', '2.7.17' ); } if ( ! defined( 'SP_NEXT_TEAM_PRESET_URL' ) ) { diff --git a/readme.txt b/readme.txt index a952bd49..2616f9be 100644 --- a/readme.txt +++ b/readme.txt @@ -3,8 +3,8 @@ Contributors: ThemeBoy, brianmiyaji, aylaview, savvasha, nabil_kadimi, rochester Tags: calendars, club, club management, esports, events, fixtures, leagues, league management, sports, sports club, sports data, team rosters Donate link: http://tboy.co/donate Requires at least: 3.8 -Tested up to: 6.1 -Stable tag: 2.7.16 +Tested up to: 6.4 +Stable tag: 2.7.17 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -240,6 +240,12 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate == Changelog == += 2.7.17 = +* Fix - PHP 8.2.x deprecated code warnings. +* Fix - Next team not working in shortcodes. +* Fix - Links rendering in event specs. +* Localization - Update translatable strings. + = 2.7.16 = * Update - WP version tested up to 6.1. * Update - Leaflet version to 1.8.0. diff --git a/sportspress.php b/sportspress.php index 9d619728..9712ecb4 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.7.16 + * Version: 2.7.17 * 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.7.16 + * @version 2.7.17 */ final class SportsPress { /** * @var string */ - public $version = '2.7.16'; + public $version = '2.7.17'; /** * @var SportsPress The single instance of the class