Skip to content

Commit

Permalink
Fix: Remove banner
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Jun 22, 2022
1 parent e8a4829 commit 10b84fe
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
14 changes: 12 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 ([#899]), 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
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,
);
}
}

0 comments on commit 10b84fe

Please sign in to comment.