Skip to content

Commit

Permalink
Reset to dev
Browse files Browse the repository at this point in the history
Signed-off-by: Harald Leithner <leithner@itronic.at>
  • Loading branch information
HLeithner committed Jan 11, 2021
1 parent 1bfc725 commit 408d8ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion administrator/manifests/files/joomla.xml
Original file line number Diff line number Diff line change
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>3.9.24-rc2</version>
<version>3.9.24-dev</version>
<creationDate>January 2021</creationDate>
<description>FILES_JOOMLA_XML_DESCRIPTION</description>

Expand Down
10 changes: 5 additions & 5 deletions libraries/src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ final class Version
* @var string
* @since 3.8.0
*/
const EXTRA_VERSION = 'rc2';
const EXTRA_VERSION = 'dev';

/**
* Release version.
Expand All @@ -78,15 +78,15 @@ final class Version
* @since 3.5
* @deprecated 4.0 Use separated version constants instead
*/
const DEV_LEVEL = '24-rc2';
const DEV_LEVEL = '24-dev';

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

/**
* Build number.
Expand All @@ -111,15 +111,15 @@ final class Version
* @var string
* @since 3.5
*/
const RELDATE = '6-January-2021';
const RELDATE = '11-January-2021';

/**
* Release time.
*
* @var string
* @since 3.5
*/
const RELTIME = '14:05';
const RELTIME = '08:49';

/**
* Release timezone.
Expand Down

2 comments on commit 408d8ed

@xillibit
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's a typo, you put into 3.9.24-dev ?

@HLeithner
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, the branch should always be on -dev only single commits should have other values and release as an empty string.

Please sign in to comment.