Skip to content

Commit

Permalink
Prepare v1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Oct 9, 2020
1 parent 27927f8 commit e6e4ac2
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
20 changes: 20 additions & 0 deletions 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!**
Expand Down
13 changes: 12 additions & 1 deletion README.md
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit e6e4ac2

Please sign in to comment.