Skip to content

Commit

Permalink
Release of version 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
khelle committed Nov 26, 2016
1 parent 07fea3a commit a2720a3
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

This changelog references the relevant changes, bug and security fixes done.

## v0.3.3 (2016-11-26)

### Fixes

- Fixed log tests for Monlog v1.22

### Miscellaneous

- Added support for PHP 7.1 ([#46](https://github.com/kraken-php/framework/pull/51)).

## v0.3.2 (2016-10-13)

### Fixes
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.2';
const VERSION = '0.3.3';

/**
* @var string
Expand Down
3 changes: 2 additions & 1 deletion test/_Module/Log/LoggerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,9 @@ public function createMessage($level, $message, $context = [])
{
$sub = '%context.A%,%context.B%';

foreach ($context as $key=>$val)
foreach ([ 'A', 'B' ] as $key)
{
$val = isset($context[$key]) ? $context[$key] : '';
$sub = str_replace("%context.$key%", $val, $sub);
}

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.2', Core::VERSION);
$this->assertSame('0.3.3', Core::VERSION);
}

/**
Expand Down

0 comments on commit a2720a3

Please sign in to comment.