Skip to content

Commit a181a68

Browse files
committed
Reset to dev
1 parent 27ffee6 commit a181a68

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

administrator/language/en-GB/install.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<extension client="administrator" type="language" method="upgrade">
33
<name>English (en-GB)</name>
44
<tag>en-GB</tag>
5-
<version>4.0.3</version>
5+
<version>4.0.4</version>
66
<creationDate>September 2021</creationDate>
77
<author>Joomla! Project</author>
88
<authorEmail>[email protected]</authorEmail>

administrator/language/en-GB/langmetadata.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<metafile client="administrator">
33
<name>English (en-GB)</name>
4-
<version>4.0.3</version>
4+
<version>4.0.4</version>
55
<creationDate>September 2021</creationDate>
66
<author>Joomla! Project</author>
77
<authorEmail>[email protected]</authorEmail>

administrator/manifests/files/joomla.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<authorUrl>www.joomla.org</authorUrl>
77
<copyright>(C) 2019 Open Source Matters, Inc.</copyright>
88
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
9-
<version>4.0.3</version>
9+
<version>4.0.4-dev</version>
1010
<creationDate>September 2021</creationDate>
1111
<description>FILES_JOOMLA_XML_DESCRIPTION</description>
1212

administrator/manifests/packages/pkg_en-GB.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<extension type="package" method="upgrade">
33
<name>English (en-GB) Language Pack</name>
44
<packagename>en-GB</packagename>
5-
<version>4.0.3.1</version>
5+
<version>4.0.4.1</version>
66
<creationDate>September 2021</creationDate>
77
<author>Joomla! Project</author>
88
<authorEmail>[email protected]</authorEmail>

api/language/en-GB/install.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<extension client="api" type="language" method="upgrade">
33
<name>English (en-GB)</name>
44
<tag>en-GB</tag>
5-
<version>4.0.3</version>
5+
<version>4.0.4</version>
66
<creationDate>September 2021</creationDate>
77
<author>Joomla! Project</author>
88
<authorEmail>[email protected]</authorEmail>

api/language/en-GB/langmetadata.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<metafile client="api">
33
<name>English (en-GB)</name>
4-
<version>4.0.3</version>
4+
<version>4.0.4</version>
55
<creationDate>September 2021</creationDate>
66
<author>Joomla! Project</author>
77
<authorEmail>[email protected]</authorEmail>

installation/language/en-GB/langmetadata.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<metafile client="installation">
33
<name>English (United Kingdom)</name>
4-
<version>4.0.3</version>
4+
<version>4.0.4</version>
55
<creationDate>September 2021</creationDate>
66
<author>Joomla! Project</author>
77
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>

language/en-GB/install.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<extension client="site" type="language" method="upgrade">
33
<name>English (en-GB)</name>
44
<tag>en-GB</tag>
5-
<version>4.0.3</version>
5+
<version>4.0.4</version>
66
<creationDate>September 2021</creationDate>
77
<author>Joomla! Project</author>
88
<authorEmail>[email protected]</authorEmail>

language/en-GB/langmetadata.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<metafile client="site">
33
<name>English (en-GB)</name>
4-
<version>4.0.3</version>
4+
<version>4.0.4</version>
55
<creationDate>September 2021</creationDate>
66
<author>Joomla! Project</author>
77
<authorEmail>[email protected]</authorEmail>

libraries/src/Version.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ final class Version
5050
* @var integer
5151
* @since 3.8.0
5252
*/
53-
const PATCH_VERSION = 3;
53+
const PATCH_VERSION = 4;
5454

5555
/**
5656
* Extra release version info.
@@ -61,15 +61,15 @@ final class Version
6161
* @var string
6262
* @since 3.8.0
6363
*/
64-
const EXTRA_VERSION = '';
64+
const EXTRA_VERSION = 'dev';
6565

6666
/**
6767
* Development status.
6868
*
6969
* @var string
7070
* @since 3.5
7171
*/
72-
const DEV_STATUS = 'Stable';
72+
const DEV_STATUS = 'Development';
7373

7474
/**
7575
* Code name.
@@ -85,15 +85,15 @@ final class Version
8585
* @var string
8686
* @since 3.5
8787
*/
88-
const RELDATE = '12-September-2021';
88+
const RELDATE = '14-September-2021';
8989

9090
/**
9191
* Release time.
9292
*
9393
* @var string
9494
* @since 3.5
9595
*/
96-
const RELTIME = '10:39';
96+
const RELTIME = '08:09';
9797

9898
/**
9999
* Release timezone.

0 commit comments

Comments
 (0)