Skip to content

Commit d2d8744

Browse files
committed
Prepare v1.2.0 release
1 parent 7f43641 commit d2d8744

File tree

2 files changed

+30
-22
lines changed

2 files changed

+30
-22
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.2.0 (2020-10-23)
4+
5+
* Enhanced documentation for ReactPHP's new HTTP client.
6+
(#95 by @SimonFrings)
7+
8+
* Improve test suite, prepare PHP 8 support and support PHPUnit 9.3.
9+
(#96 by @SimonFrings)
10+
311
## 1.1.0 (2020-06-19)
412

513
* Feature / Fix: Support PHP 7.4 by skipping unneeded cleanup of exception trace args.

README.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ which allows you to build your own SOCKS proxy servers with custom business logi
2323
Send any number of SOCKS requests in parallel and process their
2424
responses as soon as results come in.
2525
The Promise-based design provides a *sane* interface to working with out of
26-
bound responses and possible connection errors.
26+
order responses and possible connection errors.
2727
* **Standard interfaces** -
2828
Allows easy integration with existing higher-level components by implementing
2929
ReactPHP's standard
@@ -40,27 +40,27 @@ which allows you to build your own SOCKS proxy servers with custom business logi
4040
* [Support us](#support-us)
4141
* [Quickstart example](#quickstart-example)
4242
* [Usage](#usage)
43-
* [Client](#client)
44-
* [Plain TCP connections](#plain-tcp-connections)
45-
* [Secure TLS connections](#secure-tls-connections)
46-
* [HTTP requests](#http-requests)
47-
* [Protocol version](#protocol-version)
48-
* [DNS resolution](#dns-resolution)
49-
* [Authentication](#authentication)
50-
* [Proxy chaining](#proxy-chaining)
51-
* [Connection timeout](#connection-timeout)
52-
* [SOCKS over TLS](#socks-over-tls)
53-
* [Unix domain sockets](#unix-domain-sockets)
54-
* [Server](#server)
55-
* [Server connector](#server-connector)
56-
* [Authentication](#server-authentication)
57-
* [Proxy chaining](#server-proxy-chaining)
58-
* [SOCKS over TLS](#server-socks-over-tls)
59-
* [Unix domain sockets](#server-unix-domain-sockets)
43+
* [Client](#client)
44+
* [Plain TCP connections](#plain-tcp-connections)
45+
* [Secure TLS connections](#secure-tls-connections)
46+
* [HTTP requests](#http-requests)
47+
* [Protocol version](#protocol-version)
48+
* [DNS resolution](#dns-resolution)
49+
* [Authentication](#authentication)
50+
* [Proxy chaining](#proxy-chaining)
51+
* [Connection timeout](#connection-timeout)
52+
* [SOCKS over TLS](#socks-over-tls)
53+
* [Unix domain sockets](#unix-domain-sockets)
54+
* [Server](#server)
55+
* [Server connector](#server-connector)
56+
* [Authentication](#server-authentication)
57+
* [Proxy chaining](#server-proxy-chaining)
58+
* [SOCKS over TLS](#server-socks-over-tls)
59+
* [Unix domain sockets](#server-unix-domain-sockets)
6060
* [Servers](#servers)
61-
* [Using a PHP SOCKS server](#using-a-php-socks-server)
62-
* [Using SSH as a SOCKS server](#using-ssh-as-a-socks-server)
63-
* [Using the Tor (anonymity network) to tunnel SOCKS connections](#using-the-tor-anonymity-network-to-tunnel-socks-connections)
61+
* [Using a PHP SOCKS server](#using-a-php-socks-server)
62+
* [Using SSH as a SOCKS server](#using-ssh-as-a-socks-server)
63+
* [Using the Tor (anonymity network) to tunnel SOCKS connections](#using-the-tor-anonymity-network-to-tunnel-socks-connections)
6464
* [Install](#install)
6565
* [Tests](#tests)
6666
* [License](#license)
@@ -1019,7 +1019,7 @@ This project follows [SemVer](https://semver.org/).
10191019
This will install the latest supported version:
10201020

10211021
```bash
1022-
$ composer require clue/socks-react:^1.1
1022+
$ composer require clue/socks-react:^1.2
10231023
```
10241024

10251025
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.

0 commit comments

Comments
 (0)