* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core; /** * This class contains the current prestashop version constants. * This will be updated everytime we release a new version. */ final class Version { public const VERSION = '8.1.7'; public const MAJOR_VERSION_STRING = '8'; public const MAJOR_VERSION = 8; public const MINOR_VERSION = 1; public const RELEASE_VERSION = 7; // This class should not be instanciated private function __construct() { } }