Skip to content

Commit 32385d7

Browse files
committed
Prepare v0.4.5 release
1 parent d1e556a commit 32385d7

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
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+
## 0.4.5 (2017-01-08)
4+
5+
* Feature: Add `SecureServer` for secure TLS connections
6+
(#55 by @clue)
7+
8+
* Add functional integration tests
9+
(#54 by @clue)
10+
311
## 0.4.4 (2016-12-19)
412

513
* Feature / Fix: `ConnectionInterface` should extend `DuplexStreamInterface` + documentation

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
[![Build Status](https://secure.travis-ci.org/reactphp/socket.png?branch=master)](http://travis-ci.org/reactphp/socket)
44

5-
Library for building an evented socket server.
5+
Async, streaming plaintext TCP/IP and secure TLS socket server for React PHP
66

77
The socket component provides a more usable interface for a socket-layer
8-
server or client based on the [`EventLoop`](https://github.com/reactphp/event-loop)
8+
server based on the [`EventLoop`](https://github.com/reactphp/event-loop)
99
and [`Stream`](https://github.com/reactphp/stream) components.
1010

1111
**Table of Contents**
@@ -201,7 +201,7 @@ The recommended way to install this library is [through Composer](http://getcomp
201201
This will install the latest supported version:
202202

203203
```bash
204-
$ composer require react/socket:^0.4.4
204+
$ composer require react/socket:^0.4.5
205205
```
206206

207207
More details about version upgrades can be found in the [CHANGELOG](CHANGELOG.md).

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react/socket",
3-
"description": "Library for building an evented socket server.",
3+
"description": "Async, streaming plaintext TCP/IP and secure TLS socket server for React PHP",
44
"keywords": ["socket"],
55
"license": "MIT",
66
"require": {

0 commit comments

Comments
 (0)