Skip to content

Commit

Permalink
Bump to beta3 dev
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonge committed Jun 30, 2020
1 parent 08768c5 commit e5e8942
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion administrator/manifests/files/joomla.xml
Expand Up @@ -6,7 +6,7 @@
<authorUrl>www.joomla.org</authorUrl>
<copyright>(C) 2005 - 2020 Open Source Matters. All rights reserved</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<version>4.0.0-beta2</version>
<version>4.0.0-beta3-dev</version>
<creationDate>June 2020</creationDate>
<description>FILES_JOOMLA_XML_DESCRIPTION</description>

Expand Down
4 changes: 2 additions & 2 deletions build/build.php
Expand Up @@ -201,7 +201,7 @@ function clean_composer(string $dir)

// Install PHP and NPM dependencies and compile required media assets, skip Composer autoloader until post-cleanup
chdir($fullpath);
system('composer install --no-dev --no-autoloader --ignore-platform-reqs', $composerReturnCode);
system('php /usr/local/bin/composer.phar install --no-dev --no-autoloader --ignore-platform-reqs', $composerReturnCode);

if ($composerReturnCode !== 0)
{
Expand Down Expand Up @@ -230,7 +230,7 @@ function clean_composer(string $dir)
clean_checkout($fullpath);

// Regenerate the Composer autoloader without deleted files
system('composer dump-autoload --no-dev --optimize --no-scripts');
system('php /usr/local/bin/composer.phar dump-autoload --no-dev --optimize --no-scripts');

// Clean the Composer manifests now
clean_composer($fullpath);
Expand Down
6 changes: 3 additions & 3 deletions libraries/src/Version.php
Expand Up @@ -61,15 +61,15 @@ final class Version
* @var string
* @since 3.8.0
*/
const EXTRA_VERSION = 'beta2';
const EXTRA_VERSION = 'beta3-dev';

/**
* Development status.
*
* @var string
* @since 3.5
*/
const DEV_STATUS = 'Beta';
const DEV_STATUS = 'Development';

/**
* Code name.
Expand All @@ -93,7 +93,7 @@ final class Version
* @var string
* @since 3.5
*/
const RELTIME = '12:50';
const RELTIME = '12:59';

/**
* Release timezone.
Expand Down

0 comments on commit e5e8942

Please sign in to comment.