diff --git a/CHANGELOG.md b/CHANGELOG.md index f3de6d3..f88471b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [v1.0.7](https://github.com/ably/laravel-broadcaster/tree/v1.0.7) + +[Full Changelog](https://github.com/ably/laravel-broadcaster/compare/v1.0.6...v1.0.7) + +**Laravel 12 support** + +- Add support for laravel 12 [\#58](https://github.com/ably/laravel-broadcaster/issues/58) + +**Merged pull requests:** + +- \[ECO-5208\] Support laravel 12 [\#59](https://github.com/ably/laravel-broadcaster/pull/59) ([sacOO7](https://github.com/sacOO7)) +- docs\(README\): capability operations section links [\#57](https://github.com/ably/laravel-broadcaster/pull/57) ([guspan-tanadi](https://github.com/guspan-tanadi)) + ## [v1.0.6](https://github.com/ably/laravel-broadcaster/tree/v1.0.6) [Full Changelog](https://github.com/ably/laravel-broadcaster/compare/v1.0.5...v1.0.6) diff --git a/README.md b/README.md index c63e5da..4b33acc 100644 --- a/README.md +++ b/README.md @@ -137,7 +137,7 @@ npm run dev 'ably' => [ 'driver' => 'ably', 'key' => env('ABLY_KEY'), - 'token_expiry' => env('ABLY_TOKEN_EXPIRY', 3600) + 'token_expiry' => env('ABLY_TOKEN_EXPIRY', 28800) ], ``` @@ -257,3 +257,4 @@ This library uses [semantic versioning](http://semver.org/). For each release, t 7. Add a tag and push it to origin - e.g.: `git tag v1.0.6 && git push origin v1.0.6`. 8. Visit https://github.com/ably/laravel-broadcaster/tags and add release notes for the release including links to the changelog entry. 9. Visit https://packagist.org/packages/ably/laravel-broadcaster, log in to Packagist, and click the "Update" button. +10. Create the entry on the [Ably Changelog](https://changelog.ably.com/) (via [headwayapp](https://headwayapp.co/)) diff --git a/src/AblyBroadcaster.php b/src/AblyBroadcaster.php index af29e35..d99479e 100644 --- a/src/AblyBroadcaster.php +++ b/src/AblyBroadcaster.php @@ -14,7 +14,7 @@ class AblyBroadcaster extends Broadcaster { - const LIB_VERSION = '1.0.6'; + const LIB_VERSION = '1.0.7'; /** * The AblyRest SDK instance.