From 864c0c796f83e53a82a376ec2951a99045b402c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20B=C3=A9jean?= <nicolas@bejean.eu> Date: Sat, 13 Mar 2021 21:33:46 +0100 Subject: [PATCH] fix: Fix require version --- CHANGELOG.md | 4 ++++ composer.json | 6 +++--- etc/module.xml | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1dcff2..187690e 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [1.1.4] - 2021-03-13 +### Added +- Fix require version + ## [1.1.3] - 2021-03-13 ### Added - Changed vcs by git in README.md diff --git a/composer.json b/composer.json index 9f4a6bd..a9bf0fd 100755 --- a/composer.json +++ b/composer.json @@ -2,10 +2,10 @@ "name": "nicolasbejean/master", "description": "Base de travail pour le développement d'un module Magento 2", "type": "magento2-module", - "version": "1.1.3", + "version": "1.1.4", "require": { - "php": "~7.3.*||~7.4.*", - "magento/framework": "~102.0.*||~103.0.*" + "php": ">=7.3", + "magento/framework": ">=102" }, "license": [ "GPL-3.0-only" diff --git a/etc/module.xml b/etc/module.xml index 8b8c5d1..e3a03f3 100755 --- a/etc/module.xml +++ b/etc/module.xml @@ -1,6 +1,6 @@ <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> - <module name="NicolasBejean_Master" setup_version="1.1.3"> + <module name="NicolasBejean_Master" setup_version="1.1.4"> <sequence> <module name="NicolasBejean_Base"/> </sequence> -- GitLab