Skip to content

Commit a2720a3

Browse files
committed
Release of version 0.3.3
1 parent 07fea3a commit a2720a3

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

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

5+
## v0.3.3 (2016-11-26)
6+
7+
### Fixes
8+
9+
- Fixed log tests for Monlog v1.22
10+
11+
### Miscellaneous
12+
13+
- Added support for PHP 7.1 ([#46](https://github.com/kraken-php/framework/pull/51)).
14+
515
## v0.3.2 (2016-10-13)
616

717
### Fixes

src/Core/Core.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Core extends Container implements CoreInterface
1414
/**
1515
* @var string
1616
*/
17-
const VERSION = '0.3.2';
17+
const VERSION = '0.3.3';
1818

1919
/**
2020
* @var string

test/_Module/Log/LoggerTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,9 @@ public function createMessage($level, $message, $context = [])
277277
{
278278
$sub = '%context.A%,%context.B%';
279279

280-
foreach ($context as $key=>$val)
280+
foreach ([ 'A', 'B' ] as $key)
281281
{
282+
$val = isset($context[$key]) ? $context[$key] : '';
282283
$sub = str_replace("%context.$key%", $val, $sub);
283284
}
284285

test/_Unit/Core/CoreTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class CoreTest extends TUnit
2323
*/
2424
public function testCaseVersionConst_HasVersion()
2525
{
26-
$this->assertSame('0.3.2', Core::VERSION);
26+
$this->assertSame('0.3.3', Core::VERSION);
2727
}
2828

2929
/**

0 commit comments

Comments
 (0)