Skip to content

Commit

Permalink
Bump version: 1.0.0-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
jigarius committed Mar 4, 2022
1 parent 4cfec71 commit 43650e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.5.0",
"version": "1.0.0-beta1",
"homepage": "https://github.com/jigarius/drall",
"license": "GPL-3.0-only",
"keywords": ["drush", "drupal"],
Expand Down
2 changes: 1 addition & 1 deletion src/Drall.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ final class Drall extends Application {

const NAME = 'Drall';

const VERSION = '0.5.0';
const VERSION = '1.0.0-beta1';

use LoggerAwareTrait;
use SiteDetectorAwareTrait;
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/DrallTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function testName() {
public function testVersion() {
$app = new Drall();
$this->assertMatchesRegularExpression(
'/^\d+\.\d+.\d+(-(alpha|beta|rc)\.\d+)?$/',
'/^\d+\.\d+.\d+(-(alpha|beta|rc)\d+)?$/',
$app->getVersion()
);

Expand Down

0 comments on commit 43650e0

Please sign in to comment.