diff --git a/CHANGELOG.md b/CHANGELOG.md
index e8005ace..dc7a377b 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 ([#938]), 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
@@ -945,6 +955,7 @@ For a full diff see [`81bc3a8...0.1.0`][81bc3a8...0.1.0].
[#923]: https://github.com/ergebnis/composer-normalize/pull/923
[#930]: https://github.com/ergebnis/composer-normalize/pull/930
[#933]: https://github.com/ergebnis/composer-normalize/pull/933
+[#938]: https://github.com/ergebnis/composer-normalize/pull/938
[@core23]: https://github.com/core23
[@dependabot]: https://github.com/dependabot
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 = '#StandWith>Ukraine>';
-
$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,
);
}
}