diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 2ea1dadff8b..84e1f53b946 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -28,7 +28,7 @@ This serves two purposes: - HydeFront: Changed `` styling to display as inline instead of inline-block in https://github.com/hydephp/develop/pull/1525 ### Deprecated -- for soon-to-be removed features. +- Deprecated the `BuildService::transferMediaAssets()` method in https://github.com/hydephp/develop/pull/1533, as it will be moved into a build task in v2.0. ### Removed - for now removed features. diff --git a/packages/framework/src/Framework/Services/BuildService.php b/packages/framework/src/Framework/Services/BuildService.php index 83c2686e011..ba74adf851c 100644 --- a/packages/framework/src/Framework/Services/BuildService.php +++ b/packages/framework/src/Framework/Services/BuildService.php @@ -48,6 +48,7 @@ public function compileStaticPages(): void }); } + /** @deprecated This method will be replaced by a build task in v2.0 */ public function transferMediaAssets(): void { $this->needsDirectory(Hyde::siteMediaPath());