From bf372b01cbd093c876112921b71821ea40652019 Mon Sep 17 00:00:00 2001 From: yuuki takezawa Date: Tue, 9 Jun 2015 22:21:01 +0900 Subject: [PATCH 1/3] Update composer.json --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 7a759b3..2c4bd69 100644 --- a/composer.json +++ b/composer.json @@ -11,11 +11,11 @@ "license": "MIT", "require": { "php": ">=5.4.0", - "illuminate/support": "5.*", - "illuminate/view": "5.*", - "illuminate/config": "5.*", - "illuminate/console": "5.*", - "illuminate/events": "5.*", + "illuminate/support": "5.0.*", + "illuminate/view": "5.0.*", + "illuminate/config": "5.0.*", + "illuminate/console": "5.0.*", + "illuminate/events": "5.0.*", "smarty/smarty": "3.*@stable" }, "require-dev": { From 110fa07bfc8f33f6de39a52e37165103f89a3bf1 Mon Sep 17 00:00:00 2001 From: yuuki takezawa Date: Tue, 9 Jun 2015 22:24:02 +0900 Subject: [PATCH 2/3] increment version --- src/Smarty/SmartyFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Smarty/SmartyFactory.php b/src/Smarty/SmartyFactory.php index 61c49f8..dbdad27 100644 --- a/src/Smarty/SmartyFactory.php +++ b/src/Smarty/SmartyFactory.php @@ -22,7 +22,7 @@ class SmartyFactory extends Factory /** * @var string version */ - const VERSION = '2.0.0-dev'; + const VERSION = '2.0.3'; /** @var Smarty $smarty */ protected $smarty; From 6013704982822dc2ca217979f0501e359edfb8c6 Mon Sep 17 00:00:00 2001 From: yuuki takezawa Date: Tue, 9 Jun 2015 22:34:13 +0900 Subject: [PATCH 3/3] removed --- tests/SmartyFactoryTest.php | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/SmartyFactoryTest.php b/tests/SmartyFactoryTest.php index 5868c21..7157d24 100644 --- a/tests/SmartyFactoryTest.php +++ b/tests/SmartyFactoryTest.php @@ -19,11 +19,6 @@ public function testSmarty() $this->assertInstanceOf("Smarty", $this->factory->getSmarty()); } - public function testVersion() - { - $this->assertSame('2.0.0-dev', $this->factory->getVersion()); - } - public function testConfigure() { $reflectionMethod = $this->getProtectMethod($this->factory, 'setConfigure'); @@ -80,4 +75,4 @@ public function scan() closedir($dir); return $files; } -} \ No newline at end of file +}