Skip to content

Commit

Permalink
[console] Tag 1.0.0-rc25 release. (#3444)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmolivas authored Jul 17, 2017
1 parent c5f60ae commit a7b32fe
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 15 deletions.
4 changes: 3 additions & 1 deletion bin/drupal.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
use Drupal\Console\Application;

set_time_limit(0);
error_reporting(-1);
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);

$autoloaders = [];

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"composer/installers": "~1.0",
"doctrine/annotations": "1.2.*",
"doctrine/collections": "1.3.*",
"drupal/console-core": "1.0.0-rc24",
"drupal/console-core": "1.0.0-rc25",
"drupal/console-dotenv": "~0",
"drupal/console-extend-plugin": "~0",
"gabordemooij/redbean": "~4.3",
Expand Down
24 changes: 12 additions & 12 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Application extends BaseApplication
/**
* @var string
*/
const VERSION = '1.0.0-rc24';
const VERSION = '1.0.0-rc25';

public function __construct(ContainerInterface $container)
{
Expand Down

0 comments on commit a7b32fe

Please sign in to comment.