From e6e4ac224b87b36aecb5b0f6bbcb64c53f34fff5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Fri, 9 Oct 2020 13:17:57 +0200 Subject: [PATCH] Prepare v1.1.0 release --- CHANGELOG.md | 20 ++++++++++++++++++++ README.md | 13 ++++++++++++- 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7a6a21..54a852b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## 1.1.0 (2020-10-09) + +* Feature: Support authentication with URL-encoded special characters. + (#66 by @clue) + + ```php + $user = 'he:llo'; + $pass = 'p@ss'; + $promise = $factory->createClient( + rawurlencode($user) . ':' . rawurlencode($pass) . '@localhost' + ); + ``` + +* Minor documentation improvements and add support / sponsorship info. + (#58 by @clue) + +* Improve test suite and add `.gitattributes` to exclude dev files from exports. + Prepare PHP 8 support, update to PHPUnit 9 and simplify test matrix. + (#57 and #59 by @clue and #61 and #65 by @SimonFrings) + ## 1.0.0 (2019-10-31) * **First stable release, now following SemVer!** diff --git a/README.md b/README.md index cd9f6dc..9ccfe7f 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,7 @@ monitor the status of subscribers, channels or queues. **Table of contents** +* [Support us](#support-us) * [Quickstart example](#quickstart-example) * [Usage](#usage) * [Factory](#factory) @@ -62,6 +63,16 @@ monitor the status of subscribers, channels or queues. * [Tests](#tests) * [License](#license) +## Support us + +We invest a lot of time developing, maintaining and updating our awesome +open-source projects. You can help us sustain this high-quality of our work by +[becoming a sponsor on GitHub](https://github.com/sponsors/clue). Sponsors get +numerous benefits in return, see our [sponsoring page](https://github.com/sponsors/clue) +for details. + +Let's take these projects to the next level together! 🚀 + ## Quickstart example Once [installed](#install), you can use the following code to access your local @@ -538,7 +549,7 @@ This project follows [SemVer](https://semver.org/). This will install the latest supported version: ```bash -$ composer require clue/ami-react:^1.0 +$ composer require clue/ami-react:^1.1 ``` See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.