diff --git a/CHANGELOG.md b/CHANGELOG.md index 37346868..92a448ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.22...master) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.23...master) + + +## [v8.5.23 (2021-08-03)](https://github.com/laravel/laravel/compare/v8.5.22...v8.5.23) + +### Changed +- Unified asset publishing ([#5654](https://github.com/laravel/laravel/pull/5654)) ## [v8.5.22 (2021-07-13)](https://github.com/laravel/laravel/compare/v8.5.21...v8.5.22) diff --git a/README.md b/README.md index 32704a0f..98fdf0d6 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,7 @@ We would like to extend our thanks to the following sponsors for funding Laravel - **[DevSquad](https://devsquad.com)** - **[Curotec](https://www.curotec.com/services/technologies/laravel/)** - **[OP.GG](https://op.gg)** +- **[CMS Max](https://www.cmsmax.com/)** ## Contributing diff --git a/composer.json b/composer.json index 3e94d96e..4b70ac91 100644 --- a/composer.json +++ b/composer.json @@ -36,6 +36,9 @@ "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", "@php artisan package:discover --ansi" ], + "post-update-cmd": [ + "@php artisan vendor:publish --tag=laravel-assets --ansi" + ], "post-root-package-install": [ "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" ],