diff --git a/CHANGELOG.md b/CHANGELOG.md index e8005ace..28a4722d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased -For a full diff see [`2.28.0...main`][2.28.0...main]. +For a full diff see [`2.28.1...main`][2.28.1...main]. + +## [`2.28.1`][2.28.1] + +For a full diff see [`2.28.0...2.28.1`][2.28.0...2.28.1]. + +### Removed + +- Removed banner ([#899]), by [@localheinz] ## [`2.28.0`][2.28.0] @@ -763,6 +771,7 @@ For a full diff see [`81bc3a8...0.1.0`][81bc3a8...0.1.0]. [2.26.0]: https://github.com/ergebnis/composer-normalize/releases/tag/2.26.0 [2.27.0]: https://github.com/ergebnis/composer-normalize/releases/tag/2.27.0 [2.28.0]: https://github.com/ergebnis/composer-normalize/releases/tag/2.28.0 +[2.28.1]: https://github.com/ergebnis/composer-normalize/releases/tag/2.28.1 [81bc3a8...0.1.0]: https://github.com/ergebnis/composer-normalize/compare/81bc3a8...0.1.0 [0.1.0...0.2.0]: https://github.com/ergebnis/composer-normalize/compare/0.1.0...0.2.0 @@ -837,7 +846,8 @@ For a full diff see [`81bc3a8...0.1.0`][81bc3a8...0.1.0]. [2.25.2...2.26.0]: https://github.com/ergebnis/composer-normalize/compare/2.25.2...2.26.0 [2.26.0...2.27.0]: https://github.com/ergebnis/composer-normalize/compare/2.26.0...2.27.0 [2.27.0...2.28.0]: https://github.com/ergebnis/composer-normalize/compare/2.27.0...2.28.0 -[2.28.0...main]: https://github.com/ergebnis/composer-normalize/compare/2.28.0...main +[2.28.0...2.28.1]: https://github.com/ergebnis/composer-normalize/compare/2.28.0...2.28.1 +[2.28.1...main]: https://github.com/ergebnis/composer-normalize/compare/2.28.1...main [#1]: https://github.com/ergebnis/composer-normalize/pull/1 [#2]: https://github.com/ergebnis/composer-normalize/pull/2 diff --git a/src/Version.php b/src/Version.php index 3dea088e..c3050a71 100644 --- a/src/Version.php +++ b/src/Version.php @@ -28,11 +28,6 @@ public static function long(): string $name = 'ergebnis/composer-normalize'; $attribution = 'by Andreas Möller and contributors'; - /** - * @see https://en.wikipedia.org/wiki/National_colours_of_Ukraine - */ - $extra = '#StandWithUkraine'; - $version = self::$version; if ('@' . 'git@' === $version) { @@ -44,11 +39,10 @@ public static function long(): string } return \sprintf( - '%s %s %s %s', + '%s %s %s', $name, $version, $attribution, - $extra, ); } }