Skip to content

Commit

Permalink
Release of version 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
khelle committed Oct 13, 2016
1 parent 1b2026f commit 87d8077
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Core.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Core extends Container implements CoreInterface
/**
* @var string
*/
const VERSION = '0.3.1';
const VERSION = '0.3.2';

/**
* @var string
Expand Down
2 changes: 1 addition & 1 deletion test/_Unit/Core/CoreTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/**
Expand Down

0 comments on commit 87d8077

Please sign in to comment.