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 12, 2021
1 parent d61816a commit 62c29c1
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion administrator/language/en-GB/en-GB.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<metafile version="3.9" client="administrator">
<name>English (en-GB)</name>
<version>3.9.24</version>
<version>3.9.25</version>
<creationDate>January 2021</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
Expand Down
2 changes: 1 addition & 1 deletion administrator/language/en-GB/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<extension version="3.9" client="administrator" type="language" method="upgrade">
<name>English (en-GB)</name>
<tag>en-GB</tag>
<version>3.9.24</version>
<version>3.9.25</version>
<creationDate>January 2021</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
Expand Down
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</version>
<version>3.9.25-dev</version>
<creationDate>January 2021</creationDate>
<description>FILES_JOOMLA_XML_DESCRIPTION</description>

Expand Down
2 changes: 1 addition & 1 deletion administrator/manifests/packages/pkg_en-GB.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<extension type="package" version="3.9" method="upgrade">
<name>English (en-GB) Language Pack</name>
<packagename>en-GB</packagename>
<version>3.9.24.1</version>
<version>3.9.25.1</version>
<creationDate>January 2021</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/en-GB/en-GB.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
version="3.8"
client="installation">
<name>English (United Kingdom)</name>
<version>3.9.24</version>
<version>3.9.25</version>
<creationDate>January 2021</creationDate>
<author>Joomla! Project</author>
<copyright>Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion language/en-GB/en-GB.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<metafile version="3.9" client="site">
<name>English (en-GB)</name>
<version>3.9.24</version>
<version>3.9.25</version>
<creationDate>January 2021</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
Expand Down
2 changes: 1 addition & 1 deletion language/en-GB/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<extension version="3.9" client="site" type="language" method="upgrade">
<name>English (en-GB)</name>
<tag>en-GB</tag>
<version>3.9.24</version>
<version>3.9.25</version>
<creationDate>January 2021</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
Expand Down
10 changes: 5 additions & 5 deletions libraries/src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ final class Version
* @var integer
* @since 3.8.0
*/
const PATCH_VERSION = 24;
const PATCH_VERSION = 25;

/**
* Extra release version info.
Expand All @@ -60,7 +60,7 @@ final class Version
* @var string
* @since 3.8.0
*/
const EXTRA_VERSION = '';
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';
const DEV_LEVEL = '25-dev';

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

/**
* Build number.
Expand Down Expand Up @@ -119,7 +119,7 @@ final class Version
* @var string
* @since 3.5
*/
const RELTIME = '15:00';
const RELTIME = '07:29';

/**
* Release timezone.
Expand Down

0 comments on commit 62c29c1

Please sign in to comment.