From 28e9d927291bd49351567499c47e7eb3b17fd9f1 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 18 Jan 2023 16:44:05 +0100 Subject: update to 3.5.0 --- Makefile | 2 +- composer.json | 2 +- php-league-plates.spec | 13 ++++++++----- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 91b0fd5..13af741 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ SRCDIR := $(shell pwd) NAME := $(shell basename $(SRCDIR)) -include ../../common/Makefile +include ../../../common/Makefile diff --git a/composer.json b/composer.json index de9f1f7..9845103 100644 --- a/composer.json +++ b/composer.json @@ -46,7 +46,7 @@ } }, "scripts": { - "test": "phpunit --testdox", + "test": "phpunit --testdox --colors=always", "docs": "hugo -s doc server" } } diff --git a/php-league-plates.spec b/php-league-plates.spec index dc69451..acb7edd 100644 --- a/php-league-plates.spec +++ b/php-league-plates.spec @@ -1,13 +1,13 @@ # remirepo/fedora spec file for php-league-plates # -# Copyright (c) 2016-2021 Remi Collet -# License: CC-BY-SA +# Copyright (c) 2016-2023 Remi Collet +# License: CC-BY-SA-4.0 # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # # Github -%global gh_commit 6d3ee31199b536a4e003b34a356ca20f6f75496a +%global gh_commit a6a3238e46c6e19af7318fdc36bfbe49b0620231 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project plates @@ -19,7 +19,7 @@ %global ns_project Plates Name: php-%{pk_vendor}-%{pk_name} -Version: 3.4.0 +Version: 3.5.0 Release: 1%{?dist} Summary: Native PHP template system @@ -95,7 +95,7 @@ EOF : Run upstream test suite ret=0 -for cmd in php php73 php74 php80; do +for cmd in php php80 php81 php82; do if which $cmd; then $cmd %{_bindir}/phpunit9 || ret=1 fi @@ -114,6 +114,9 @@ exit $ret %changelog +* Wed Jan 18 2023 Remi Collet - 3.5.0-1 +- update to 3.5.0 + * Wed Jan 6 2021 Remi Collet - 3.4.0-1 - update to 3.4.0 - raise dependency on PHP 7 -- cgit