Skip to content

Commit 2db822c

Browse files
committed
Prepare changelog
1 parent 4d4f86d commit 2db822c

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,36 @@ This file is a manually maintained list of changes for each release. Feel free
44
to add your changes here when sending pull requests. Also send corrections if
55
you spot any mistakes.
66

7+
## 0.2.0 (2014-09-xx)
8+
9+
* BC break: Simplify constructors my making parameters optional.
10+
([#10](https://github.com/clue/php-socks-react/pull/10))
11+
The `Factory` has been removed, you can now create instances of the `Client`
12+
and `Server` yourself:
13+
14+
```php
15+
// old
16+
$factory = new Factory($loop, $dns);
17+
$client = $factory->createClient('localhost', 9050);
18+
$server = $factory->createSever($socket);
19+
20+
// new
21+
$client = new Client($loop, 'localhost', 9050);
22+
$server = new Server($loop, $socket);
23+
```
24+
25+
* BC break: Remove HTTP support and link to [clue/buzz-react](https://github.com/clue/php-buzz-react) instead.
26+
([#9](https://github.com/clue/php-socks-react/pull/9))
27+
HTTP operates on a different layer than this low-level SOCKS library.
28+
Removing this reduces the footprint of this library.
29+
30+
> Upgrading? Check the [README](https://github.com/clue/php-socks-react#http-requests) for details.
31+
32+
* Fix: Refactored to support other, faster loops (libev/libevent)
33+
([#12](https://github.com/clue/php-socks-react/pull/12))
34+
35+
* Explicitly list dependencies, clean up examples and extend test suite significantly
36+
737
## 0.1.0 (2014-05-19)
838

939
* First stable release

0 commit comments

Comments
 (0)