Skip to content

Commit 392dc16

Browse files
committed
Prepare v1.3.0 release
1 parent 4b0f59b commit 392dc16

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

CHANGELOG.md

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

3+
## 1.3.0 (2022-12-23)
4+
5+
* Feature: Add support for PHP 8.1 and PHP 8.2.
6+
(#31 by @clue and #30 by @SimonFring)
7+
8+
* Feature: Check type of incoming `data` before trying to decode NDJSON.
9+
(#29 by @SimonFrings)
10+
11+
* Improve documentation and examples and update to new [default loop](https://reactphp.org/event-loop/#loop).
12+
(#26 by @clue, #27 by @SimonFrings and #25 by @PaulRotmann)
13+
14+
* Improve test suite, report failed assertions and ensure 100% code coverage.
15+
(#32 and #33 by @clue and #28 by @SimonFrings)
16+
317
## 1.2.0 (2020-12-09)
418

519
* Improve test suite and add `.gitattributes` to exclude dev files from exports.

README.md

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

33
[![CI status](https://github.com/clue/reactphp-ndjson/actions/workflows/ci.yml/badge.svg)](https://github.com/clue/reactphp-ndjson/actions)
44
[![installs on Packagist](https://img.shields.io/packagist/dt/clue/ndjson-react?color=blue&label=installs%20on%20Packagist)](https://packagist.org/packages/clue/ndjson-react)
5+
[![code coverage](https://img.shields.io/badge/code%20coverage-100%25-success)](#tests)
56

67
Streaming newline-delimited JSON ([NDJSON](http://ndjson.org/)) parser and encoder for [ReactPHP](https://reactphp.org/).
78

@@ -309,7 +310,7 @@ This project follows [SemVer](https://semver.org/).
309310
This will install the latest supported version:
310311

311312
```bash
312-
$ composer require clue/ndjson-react:^1.2
313+
composer require clue/ndjson-react:^1.3
313314
```
314315

315316
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
@@ -325,13 +326,13 @@ To run the test suite, you first need to clone this repo and then install all
325326
dependencies [through Composer](https://getcomposer.org/):
326327

327328
```bash
328-
$ composer install
329+
composer install
329330
```
330331

331332
To run the test suite, go to the project root and run:
332333

333334
```bash
334-
$ vendor/bin/phpunit
335+
vendor/bin/phpunit
335336
```
336337

337338
## License

0 commit comments

Comments
 (0)