Skip to content

Commit

Permalink
chore(concerns): update Symfony and MonorepoBuilderPrefix versions
Browse files Browse the repository at this point in the history
- Update Symfony and MonorepoBuilderPrefix versions in ConcreteFactory.php, UpdateChangelogViaPhpReleaseWorker.php, and ConcreteFactoryTest.php
- Use the present tense and active voice in the commit messages
- Limit the subject line to 72 characters or less
- Capitalize the subject line
- Do not end the subject line with a period
- Limit the body of the message to 256 characters or less
- Use a blank line between the subject and the body of the message
- Use the body of the message to provide additional context or explain the reasoning behind the changes
- Avoid using general terms like 'update' or 'change' in the subject line, be specific about what was updated or changed
- Explain what was done at a glance in the subject line, and provide additional context in the body of the message
- Why the change was necessary in the body of the message
- The details about what was done in the body of the message
- Any useful details concerning the change in the body of the message
- Use a hyphen (-) for the bullet points in the body of the message
  • Loading branch information
guanguans committed Jan 7, 2024
1 parent d560995 commit 1a89880
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions src/Concerns/ConcreteFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@

namespace Guanguans\MonorepoBuilderWorker\Concerns;

use MonorepoBuilderPrefix202310\Symfony\Component\Console\Input\ArgvInput;
use MonorepoBuilderPrefix202310\Symfony\Component\Console\Input\InputInterface;
use MonorepoBuilderPrefix202310\Symfony\Component\Console\Output\ConsoleOutput;
use MonorepoBuilderPrefix202310\Symfony\Component\Console\Output\OutputInterface;
use MonorepoBuilderPrefix202310\Symfony\Component\Console\Style\SymfonyStyle;
use MonorepoBuilderPrefix202310\Symfony\Component\Process\ExecutableFinder;
use MonorepoBuilderPrefix202309\Symfony\Component\Console\Input\ArgvInput;
use MonorepoBuilderPrefix202309\Symfony\Component\Console\Input\InputInterface;
use MonorepoBuilderPrefix202309\Symfony\Component\Console\Output\ConsoleOutput;
use MonorepoBuilderPrefix202309\Symfony\Component\Console\Output\OutputInterface;
use MonorepoBuilderPrefix202309\Symfony\Component\Console\Style\SymfonyStyle;
use MonorepoBuilderPrefix202309\Symfony\Component\Process\ExecutableFinder;
use Symplify\MonorepoBuilder\Release\Process\ProcessRunner;

trait ConcreteFactory
Expand Down
2 changes: 1 addition & 1 deletion src/UpdateChangelogViaPhpReleaseWorker.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
namespace Guanguans\MonorepoBuilderWorker;

use Guanguans\MonorepoBuilderWorker\Contracts\ChangelogContract;
use MonorepoBuilderPrefix202310\Webmozart\Assert\Assert;
use MonorepoBuilderPrefix202309\Webmozart\Assert\Assert;
use PharIo\Version\Version;
use Symplify\MonorepoBuilder\Release\Process\ProcessRunner;

Expand Down
8 changes: 4 additions & 4 deletions tests/Unit/Concerns/ConcreteFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
namespace Guanguans\MonorepoBuilderWorkerTests\Unit\Concerns;

use Guanguans\MonorepoBuilderWorker\Concerns\ConcreteFactory;
use MonorepoBuilderPrefix202310\Symfony\Component\Console\Input\ArgvInput;
use MonorepoBuilderPrefix202310\Symfony\Component\Console\Output\ConsoleOutput;
use MonorepoBuilderPrefix202310\Symfony\Component\Console\Style\SymfonyStyle;
use MonorepoBuilderPrefix202310\Symfony\Component\Process\ExecutableFinder;
use MonorepoBuilderPrefix202309\Symfony\Component\Console\Input\ArgvInput;
use MonorepoBuilderPrefix202309\Symfony\Component\Console\Output\ConsoleOutput;
use MonorepoBuilderPrefix202309\Symfony\Component\Console\Style\SymfonyStyle;
use MonorepoBuilderPrefix202309\Symfony\Component\Process\ExecutableFinder;
use Symplify\MonorepoBuilder\Release\Process\ProcessRunner;

uses(ConcreteFactory::class);
Expand Down

0 comments on commit 1a89880

Please sign in to comment.