File tree Expand file tree Collapse file tree 2 files changed +20
-6
lines changed Expand file tree Collapse file tree 2 files changed +20
-6
lines changed Original file line number Diff line number Diff line change 1
- # CHANGELOG
1
+ # Changelog
2
2
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
6
20
7
21
## 0.2.1 (2014-11-13)
8
22
@@ -14,7 +28,7 @@ you spot any mistakes.
14
28
15
29
## 0.2.0 (2014-09-27)
16
30
17
- * BC break: Simplify constructors by making parameters optional.
31
+ * BC break / Feature : Simplify constructors by making parameters optional.
18
32
([ #10 ] ( https://github.com/clue/php-socks-react/pull/10 ) )
19
33
20
34
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
345
345
``` JSON
346
346
{
347
347
"require" : {
348
- "clue/socks-react" : " ~0.2 .0"
348
+ "clue/socks-react" : " ~0.3 .0"
349
349
}
350
350
}
351
351
```
You can’t perform that action at this time.
0 commit comments