Skip to content

Commit

Permalink
Prepare v1.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonFrings committed Dec 23, 2022
1 parent 4b0f59b commit 392dc16
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 1.3.0 (2022-12-23)

* Feature: Add support for PHP 8.1 and PHP 8.2.
(#31 by @clue and #30 by @SimonFring)

* Feature: Check type of incoming `data` before trying to decode NDJSON.
(#29 by @SimonFrings)

* Improve documentation and examples and update to new [default loop](https://reactphp.org/event-loop/#loop).
(#26 by @clue, #27 by @SimonFrings and #25 by @PaulRotmann)

* Improve test suite, report failed assertions and ensure 100% code coverage.
(#32 and #33 by @clue and #28 by @SimonFrings)

## 1.2.0 (2020-12-09)

* Improve test suite and add `.gitattributes` to exclude dev files from exports.
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

[![CI status](https://github.com/clue/reactphp-ndjson/actions/workflows/ci.yml/badge.svg)](https://github.com/clue/reactphp-ndjson/actions)
[![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)
[![code coverage](https://img.shields.io/badge/code%20coverage-100%25-success)](#tests)

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

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

```bash
$ composer require clue/ndjson-react:^1.2
composer require clue/ndjson-react:^1.3
```

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

```bash
$ composer install
composer install
```

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

```bash
$ vendor/bin/phpunit
vendor/bin/phpunit
```

## License
Expand Down

0 comments on commit 392dc16

Please sign in to comment.