Skip to content

Commit

Permalink
prefix version
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenfoncken committed Apr 30, 2024
1 parent 4780abf commit b20c558
Show file tree
Hide file tree
Showing 20 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/01_BUG-REPORT.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ body:
Examples:
- **OS**: Ubuntu 22.04
- **PHP**: 8.2.16
- **###/###**: 0.2.0
- **###/###**: v0.2.0
value: |
- OS:
- PHP:
Expand Down
2 changes: 1 addition & 1 deletion bin/console
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ $commandLoader = new FactoryCommandLoader(
]
);

$application = new Application('Multi-Tool for Spotify - Console Application', '0.2.0'); // --version
$application = new Application('Multi-Tool for Spotify - Console Application', 'v0.2.0'); // --version
$application->setCatchExceptions(true);
$application->setCommandLoader($commandLoader);
$application->run();
Expand Down
2 changes: 1 addition & 1 deletion src/Command/ArchiveCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/**
* Console command that archive playlists based on passed playlist IDs.
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
#[AsCommand(
Expand Down
2 changes: 1 addition & 1 deletion src/Command/AuthCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* Console command that handles the Spotify OAuth process & API token generation.
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
#[AsCommand(
Expand Down
2 changes: 1 addition & 1 deletion src/Command/CreateArtistCatalogPlaylistCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* Console command that copies a given artist's catalog into a new or given playlist.
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
#[AsCommand(
Expand Down
2 changes: 1 addition & 1 deletion src/Command/DeleteArchivedPlaylistsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/**
* Console command that deletes archived playlists.
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
#[AsCommand(
Expand Down
2 changes: 1 addition & 1 deletion src/Command/ListArchivedPlaylistsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* Console command that lists archived playlists.
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
#[AsCommand(
Expand Down
2 changes: 1 addition & 1 deletion src/Command/PlaygroundCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/**
* Playground console command.
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
#[AsCommand(
Expand Down
2 changes: 1 addition & 1 deletion src/Command/SearchTrackInLibraryCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* Console command that searches for a given track (id) in all user-generated playlists (library).
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
#[AsCommand(
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Style/CustomStyle.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* Custom style for console commands.
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
class CustomStyle extends SymfonyStyle
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/CsvHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* Helpers for handling CSV files.
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
class CsvHelper
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/SpotifyApiHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* Helpers for the SpotifyWebAPI.
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
class SpotifyApiHelper
Expand Down
2 changes: 1 addition & 1 deletion src/Monolog/Handler/ArchivedPlaylistsHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* HandlerWrapper that adds custom filtering so that only archive playlist creation is logged.
* It can be applied to other handlers e.g. StreamHandler.
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
class ArchivedPlaylistsHandler extends HandlerWrapper
Expand Down
2 changes: 1 addition & 1 deletion src/Service/ArtistService.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* Service that handles various tasks related to Spotify artists.
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
class ArtistService
Expand Down
2 changes: 1 addition & 1 deletion src/Service/AuthService.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* Service for AuthCommand that contains the logic for the Spotify OAuth process & API token generation.
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
class AuthService
Expand Down
2 changes: 1 addition & 1 deletion src/Service/MailService.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Service that handles mailing.
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
class MailService
Expand Down
2 changes: 1 addition & 1 deletion src/Service/PlaylistService.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* Service that handles various tasks related to Spotify playlists.
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
class PlaylistService
Expand Down
2 changes: 1 addition & 1 deletion src/Service/TrackService.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* Service that handles various tasks related to Spotify tracks.
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
class TrackService
Expand Down
2 changes: 1 addition & 1 deletion src/Validator/UrlContainsQueryParameter.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* Constraint (rule) for URL query parameters.
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
class UrlContainsQueryParameter extends Constraint
Expand Down
2 changes: 1 addition & 1 deletion src/Validator/UrlContainsQueryParameterValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Validator for the UrlContainsQueryParameter constraint.
*
* @since 0.2.0
* @since v0.2.0
* @author Steven Foncken <dev[at]stevenfoncken[dot]de>
*/
class UrlContainsQueryParameterValidator extends ConstraintValidator
Expand Down

0 comments on commit b20c558

Please sign in to comment.