diff --git a/Changelog.md b/Changelog.md index 6514e93..1688653 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,10 +2,16 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release. -## 1.3.0 +## 1.3.1 ### Fixed +- Show our dependencies directly in require secion of composer.json. + +## 1.3.0 + +### Added + - Adding compiler pass support. - Adding support for making services public. diff --git a/src/CompilerPass/PublicServicePass.php b/src/CompilerPass/PublicServicePass.php index 0609cf0..8862416 100644 --- a/src/CompilerPass/PublicServicePass.php +++ b/src/CompilerPass/PublicServicePass.php @@ -11,7 +11,8 @@ class PublicServicePass implements CompilerPassInterface { /** - * A regex to match the services that should be public + * A regex to match the services that should be public. + * * @var string */ private $regex;