File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # CHANGELOG
1+ # Changelog
22
3- This file is a manually maintained list of changes for each release. Feel free
4- to add your changes here when sending pull requests. Also send corrections if
5- you spot any mistakes.
3+ ## 0.3.0 (2015-06-20)
4+
5+ * BC break / Feature: Client ctor now accepts a SOCKS server URI
6+ ([ #24 ] ( https://github.com/clue/php-socks-react/pull/24 ) )
7+
8+ ``` php
9+ // old
10+ $client = new Client($loop, 'localhost', 9050);
11+
12+ // new
13+ $client = new Client('localhost:9050', $loop);
14+ ```
15+
16+ * Feature: Automatically assume default SOCKS port (1080) if not given explicitly
17+ ([ #26 ] ( https://github.com/clue/php-socks-react/pull/26 ) )
18+
19+ * Improve documentation and test suite
620
721## 0.2.1 (2014-11-13)
822
@@ -14,7 +28,7 @@ you spot any mistakes.
1428
1529## 0.2.0 (2014-09-27)
1630
17- * BC break: Simplify constructors by making parameters optional.
31+ * BC break / Feature : Simplify constructors by making parameters optional.
1832 ([ #10 ] ( https://github.com/clue/php-socks-react/pull/10 ) )
1933
2034 The ` Factory ` has been removed, you can now create instances of the ` Client `
Original file line number Diff line number Diff line change @@ -345,7 +345,7 @@ The recommended way to install this library is [through composer](http://getcomp
345345``` JSON
346346{
347347 "require" : {
348- "clue/socks-react" : " ~0.2 .0"
348+ "clue/socks-react" : " ~0.3 .0"
349349 }
350350}
351351```
You can’t perform that action at this time.
0 commit comments