Skip to content

Commit

Permalink
Bump version: v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jigarius committed Mar 1, 2022
1 parent 3e2f4f0 commit 563fa26
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jigarius/drall",
"description": "Drall is a utility to run drush on multi-site Drupal installations.",
"version": "0.0.0",
"version": "0.5.0",
"homepage": "https://github.com/jigarius/drall",
"license": "GPL-3.0-only",
"keywords": ["drush", "drupal"],
Expand Down
4 changes: 3 additions & 1 deletion src/Drall.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ final class Drall extends Application {

const NAME = 'Drall';

const VERSION = '0.5.0';

use LoggerAwareTrait;

/**
Expand All @@ -31,7 +33,7 @@ public function __construct() {
parent::__construct();

$this->setName(self::NAME);
$this->setVersion('0.0.0');
$this->setVersion(self::VERSION);

$this->input = new ArgvInput();
$this->output = new ConsoleOutput();
Expand Down

0 comments on commit 563fa26

Please sign in to comment.