From 87d80776161f3ec42684581d524d40c85b8633b0 Mon Sep 17 00:00:00 2001 From: Khelle Date: Thu, 13 Oct 2016 22:16:10 +0200 Subject: [PATCH] Release of version 0.3.2 --- CHANGELOG.md | 7 +++++++ src/Core/Core.php | 2 +- test/_Unit/Core/CoreTest.php | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fdae66..609beac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ This changelog references the relevant changes, bug and security fixes done. +## v0.3.2 (2016-10-13) + +### Fixes + +- Changed include method of external PHP scripts to not require allow_url_include flag ([#41](https://github.com/kraken-php/framework/pull/41)). +- Fixed the wrong behaviour of checkOrigin flag in WsRouter ([#46](https://github.com/kraken-php/framework/issues/46)). + ## v0.3.1 (2016-09-30) ### Additions diff --git a/src/Core/Core.php b/src/Core/Core.php index fcee990..0a3ebdb 100644 --- a/src/Core/Core.php +++ b/src/Core/Core.php @@ -14,7 +14,7 @@ class Core extends Container implements CoreInterface /** * @var string */ - const VERSION = '0.3.1'; + const VERSION = '0.3.2'; /** * @var string diff --git a/test/_Unit/Core/CoreTest.php b/test/_Unit/Core/CoreTest.php index beb5732..d2b19af 100644 --- a/test/_Unit/Core/CoreTest.php +++ b/test/_Unit/Core/CoreTest.php @@ -23,7 +23,7 @@ class CoreTest extends TUnit */ public function testCaseVersionConst_HasVersion() { - $this->assertSame('0.3.1', Core::VERSION); + $this->assertSame('0.3.2', Core::VERSION); } /**