From e7be2012ff7049726578105a2dc63ef95ff4e2f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me?= Date: Fri, 22 Nov 2024 15:09:34 +0100 Subject: [PATCH] Added PHP 8.3 compatibility --- CHANGELOG.md | 3 +++ composer.json | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a632ea..1e92ea1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [1.12.0] 2024-11-22 +* Enabled PHP `8.3` support in `composer.json` + ## [1.11.0] 2023-11-06 * Enabled PHP `8.1` and `8.2` support in `composer.json` diff --git a/composer.json b/composer.json index ee40d80..f660cae 100644 --- a/composer.json +++ b/composer.json @@ -1,10 +1,11 @@ { "name": "snowdog/module-cms-api", "description": "Custom CMS API endpoints which retrieves CMS pages and blocks filtered", + "version": "1.12.0", "require": { "magento/framework": "101.0.*|102.0.*|103.0.*", "magento/module-cms": "102.0.*|103.0.*|104.0.*", - "php": "7.0.2|7.0.4|~7.0.6|~7.1.0|~7.2.0|~7.3.0|~7.4.0|~8.1.0|~8.2.0" + "php": "7.0.2|7.0.4|~7.0.6|~7.1.0|~7.2.0|~7.3.0|~7.4.0|~8.1.0|~8.2.0|~8.3.0" }, "license": "MIT", "type": "magento2-module",