Skip to content

Commit 6af2f44

Browse files
committed
Prepare v0.3.0 release
1 parent 4ecff16 commit 6af2f44

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed

CHANGELOG.md

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
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`

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
```

0 commit comments

Comments
 (0)