Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Remove banner #938

Merged
merged 1 commit into from Jun 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 13 additions & 2 deletions CHANGELOG.md
Expand Up @@ -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]

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
8 changes: 1 addition & 7 deletions src/Version.php
Expand Up @@ -28,11 +28,6 @@ public static function long(): string
$name = 'ergebnis/composer-normalize';
$attribution = 'by <info>Andreas Möller</info> and contributors';

/**
* @see https://en.wikipedia.org/wiki/National_colours_of_Ukraine
*/
$extra = '<fg=#0057b8>#StandWith</><fg=#ffd700>Ukraine</>';

$version = self::$version;

if ('@' . 'git@' === $version) {
Expand All @@ -44,11 +39,10 @@ public static function long(): string
}

return \sprintf(
'<info>%s</info> %s %s %s',
'<info>%s</info> %s %s',
$name,
$version,
$attribution,
$extra,
);
}
}