From c35b46a49cdb52d3ad03c705b1d2dafb66c90076 Mon Sep 17 00:00:00 2001 From: Ionut Padurariu Date: Fri, 26 Jan 2018 12:37:33 +0100 Subject: [PATCH] fix wrong name of constant --- composer.json | 2 +- manifest.php | 2 +- scripts/update/Updater.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 91d18232..5a5c0ad5 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ ], "homepage" : "http://www.taotesting.com", "license" : [ - "GPL-2.0-ONLY" + "GPL-2.0-only" ], "extra" : { "tao-extension-name" : "taoDacSimple" diff --git a/manifest.php b/manifest.php index feb426a5..d0efc4af 100644 --- a/manifest.php +++ b/manifest.php @@ -28,7 +28,7 @@ 'label' => 'extension-tao-dac-simple', 'description' => 'extension that allows admin to give access to some resources to other people', 'license' => 'GPL-2.0', - 'version' => '2.5.0', + 'version' => '2.5.1', 'author' => 'Open Assessment Technologies SA', 'requires' => array( 'taoBackOffice' => '>=1.4.0', diff --git a/scripts/update/Updater.php b/scripts/update/Updater.php index c0425c7a..ba03a7bf 100644 --- a/scripts/update/Updater.php +++ b/scripts/update/Updater.php @@ -128,6 +128,6 @@ public function update($initialVersion) { $this->setVersion('2.2.0'); } - $this->skip('2.2.0', '2.5.0'); + $this->skip('2.2.0', '2.5.1'); } }