Skip to content

Commit e2a8c85

Browse files
committed
Release of version 0.3.1
1 parent c23b4ba commit e2a8c85

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

CHANGELOG.md

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

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

5+
## v0.3.1 (2016-09-30)
6+
7+
### Additions
8+
9+
- Added unviersal namespace for creating container definitions which do not care whether they are processes or threads ([#31](https://github.com/kraken-php/framework/issues/31)).
10+
- Added possibility of creating universal bootstrap files.
11+
- Added possibility of creating universal config files.
12+
- Added `sendCommand` method to each class implementing `Kraken\Runtime\RuntimeManagerInterface` ([#34](https://github.com/kraken-php/framework/issues/34)).
13+
- Created `FilesystemFactory` in `Kraken\Filesystem` namespace ([#29](https://github.com/kraken-php/framework/issues/29)).
14+
15+
### Fixes
16+
17+
- Fixed an issue of WsServer not working correctly in pair with NetworkServer ([#36](https://github.com/kraken-php/framework/issues/36)).
18+
- Fixed an issue of `Kraken\Ipc\Socket\SocketListener` not being able to reuse unix ports ([#35](https://github.com/kraken-php/framework/issues/35)).
19+
- Fixed the major issue of container being able to process wrong instructions in failed state ([#33](https://github.com/kraken-php/framework/issues/33)).
20+
- Fixed an issue of threads not being able to create log files ([#32](https://github.com/kraken-php/framework/issues/32)).
21+
22+
### Miscellaneous
23+
24+
- Removed unused `kraken` and `kraken.server` scripts.
25+
- Refactored process isolation mechanisms.
26+
- Renamed environmental file a `ConfigProvider` searches for, from `data/config.env` to `data/environment`.
27+
- Added missing replace `kraken-php/test` item in composer.json.
28+
- Renamed `EventHandler` to `EventListener` to keep implementation consistent with theory ([#28](https://github.com/kraken-php/framework/issues/28)).
29+
- Added missing `symfony/routing` dependency ([#26](https://github.com/kraken-php/framework/issues/26)).
30+
- Refactored `Kraken\Promise` namespace.
31+
- Made supervision solver names for escalating problems more meaningful ([#27](https://github.com/kraken-php/framework/issues/27)).
32+
533
## v0.3.0 (2016-09-16)
634

735
- Initial release of publicly accessible version of Kraken

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.0';
17+
const VERSION = '0.3.1';
1818

1919
/**
2020
* @var string

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.0', Core::VERSION);
26+
$this->assertSame('0.3.1', Core::VERSION);
2727
}
2828

2929
/**

0 commit comments

Comments
 (0)