diff --git a/CHANGELOG.md b/CHANGELOG.md
index feca3a05..9907930b 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.23.1...main`][2.23.1...main].
+For a full diff see [`2.24.0...main`][2.24.0...main].
+
+## [`2.24.0`][2.24.0]
+
+For a full diff see [`2.23.1...2.24.0`][2.23.1...2.24.0].
+
+### Added
+
+- Added Stand with Ukraine banner ([#899]), by [@localheinz]
## [`2.23.1`][2.23.1]
@@ -845,6 +853,7 @@ For a full diff see [`81bc3a8...0.1.0`][81bc3a8...0.1.0].
[#864]: https://github.com/ergebnis/composer-normalize/pull/864
[#871]: https://github.com/ergebnis/composer-normalize/pull/871
[#875]: https://github.com/ergebnis/composer-normalize/pull/875
+[#899]: https://github.com/ergebnis/composer-normalize/pull/899
[@core23]: https://github.com/core23
[@dependabot]: https://github.com/dependabot
diff --git a/src/Version.php b/src/Version.php
index c3050a71..3dea088e 100644
--- a/src/Version.php
+++ b/src/Version.php
@@ -28,6 +28,11 @@ 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) {
@@ -39,10 +44,11 @@ public static function long(): string
}
return \sprintf(
- '%s %s %s',
+ '%s %s %s %s',
$name,
$version,
$attribution,
+ $extra,
);
}
}