Skip to content

Commit c61783a

Browse files
committed
Prepare v1.3.0 release
1 parent 62dc397 commit c61783a

File tree

2 files changed

+34
-12
lines changed

2 files changed

+34
-12
lines changed

CHANGELOG.md

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

3+
# 1.3.0 (2020-12-17)
4+
5+
* Feature: Update to reactphp/http v1.0.0.
6+
(#64 by @clue)
7+
8+
* Improve test suite and add `.gitattributes` to exclude dev files from exports.
9+
Add PHP 8 support, update to PHPUnit 9 and simplify test setup.
10+
(#62, #65, #66 and #67 by @SimonFrings)
11+
312
## 1.2.0 (2020-03-31)
413

514
* Feature: Add `containerAttach()` and `containerAttachStream()` API methods.

README.md

Lines changed: 25 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,34 @@ its event-driven model to react to changes and events happening.
2323
and does not get in your way.
2424
This library is merely a very thin wrapper around the [Docker Engine API](https://docs.docker.com/develop/sdk/).
2525
* **Good test coverage** -
26-
Comes with an automated tests suite and is regularly tested in the *real world*
26+
Comes with an automated tests suite and is regularly tested in the *real world*.
2727

2828
**Table of contents**
2929

30+
* [Support us](#support-us)
3031
* [Quickstart example](#quickstart-example)
3132
* [Usage](#usage)
32-
* [Client](#client)
33-
* [Commands](#commands)
34-
* [Promises](#promises)
35-
* [Blocking](#blocking)
36-
* [Command streaming](#command-streaming)
37-
* [TAR streaming](#tar-streaming)
38-
* [JSON streaming](#json-streaming)
33+
* [Client](#client)
34+
* [Commands](#commands)
35+
* [Promises](#promises)
36+
* [Blocking](#blocking)
37+
* [Command streaming](#command-streaming)
38+
* [TAR streaming](#tar-streaming)
39+
* [JSON streaming](#json-streaming)
3940
* [Install](#install)
4041
* [Tests](#tests)
4142
* [License](#license)
4243

44+
## Support us
45+
46+
We invest a lot of time developing, maintaining and updating our awesome
47+
open-source projects. You can help us sustain this high-quality of our work by
48+
[becoming a sponsor on GitHub](https://github.com/sponsors/clue). Sponsors get
49+
numerous benefits in return, see our [sponsoring page](https://github.com/sponsors/clue)
50+
for details.
51+
52+
Let's take these projects to the next level together! 🚀
53+
4354
## Quickstart example
4455

4556
Once [installed](#install), you can use the following code to access the
@@ -354,24 +365,26 @@ See also the [pull example](examples/pull.php) and the [push example](examples/p
354365

355366
## Install
356367

357-
The recommended way to install this library is [through Composer](https://getcomposer.org).
358-
[New to composer?](https://getcomposer.org/doc/00-intro.md)
368+
The recommended way to install this library is [through Composer](https://getcomposer.org/).
369+
[New to Composer?](https://getcomposer.org/doc/00-intro.md)
359370

360371
This project follows [SemVer](https://semver.org/).
361372
This will install the latest supported version:
362373

363374
```bash
364-
$ composer require clue/docker-react:^1.2
375+
$ composer require clue/docker-react:^1.3
365376
```
366377

378+
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
379+
367380
This project aims to run on any platform and thus does not require any PHP
368381
extensions and supports running on legacy PHP 5.3 through current PHP 8+.
369382
It's *highly recommended to use PHP 7+* for this project.
370383

371384
## Tests
372385

373386
To run the test suite, you first need to clone this repo and then install all
374-
dependencies [through Composer](https://getcomposer.org):
387+
dependencies [through Composer](https://getcomposer.org/):
375388

376389
```bash
377390
$ composer install

0 commit comments

Comments
 (0)