Skip to content

Commit

Permalink
Bump version: 3.1.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
jigarius committed Jan 4, 2024
1 parent 7e3260d commit b0ae0a6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jigarius/drall",
"description": "Drall is a command-line utility to run drush on multi-site Drupal installations.",
"license": "GPL-3.0-only",
"version": "3.0.0",
"version": "3.1.0-rc1",
"keywords": [
"drupal",
"drush",
Expand Down
4 changes: 2 additions & 2 deletions src/Drall.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ final class Drall extends Application {

const NAME = 'Drall';

const VERSION = '3.0.0';
const VERSION = '3.1.0-rc1';

use SiteDetectorAwareTrait;

/**
* Creates a Phpake Application instance.
* Creates a Drall Application instance.
*/
public function __construct() {
parent::__construct();
Expand Down
2 changes: 1 addition & 1 deletion test/Integration/Command/ExecCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ public function testWithSitePlaceholderAndGroup(): void {
}

public function testCatchStdErrOutput(): void {
$output = shell_exec('drall exec --drall-filter=default drush version --verbose');
$output = shell_exec('drall exec --drall-filter=default drush version --no-ansi --verbose');

// Ignore the Drush Version.
$output = preg_replace('@(Drush version :) ([\d|\.|-]+)@', '$1 x.y.z', $output);
Expand Down

0 comments on commit b0ae0a6

Please sign in to comment.