Skip to content

Commit 4a114da

Browse files
committed
Create release 4.1 Alpha2
1 parent 0029528 commit 4a114da

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
@@ -3,7 +3,7 @@
33
<name>English (en-GB)</name>
44
<tag>en-GB</tag>
55
<version>4.1.0</version>
6-
<creationDate>September 2021</creationDate>
6+
<creationDate>October 2021</creationDate>
77
<author>Joomla! Project</author>
88
<authorEmail>[email protected]</authorEmail>
99
<authorUrl>www.joomla.org</authorUrl>

administrator/language/en-GB/langmetadata.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<metafile client="administrator">
33
<name>English (en-GB)</name>
44
<version>4.1.0</version>
5-
<creationDate>September 2021</creationDate>
5+
<creationDate>October 2021</creationDate>
66
<author>Joomla! Project</author>
77
<authorEmail>[email protected]</authorEmail>
88
<authorUrl>www.joomla.org</authorUrl>

administrator/manifests/files/joomla.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
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.1.0-dev</version>
10-
<creationDate>September 2021</creationDate>
9+
<version>4.1.0-alpha2</version>
10+
<creationDate>October 2021</creationDate>
1111
<description>FILES_JOOMLA_XML_DESCRIPTION</description>
1212

1313
<scriptfile>administrator/components/com_admin/script.php</scriptfile>

administrator/manifests/packages/pkg_en-GB.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<name>English (en-GB) Language Pack</name>
44
<packagename>en-GB</packagename>
55
<version>4.1.0.1</version>
6-
<creationDate>September 2021</creationDate>
6+
<creationDate>October 2021</creationDate>
77
<author>Joomla! Project</author>
88
<authorEmail>[email protected]</authorEmail>
99
<authorUrl>www.joomla.org</authorUrl>

api/language/en-GB/install.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<name>English (en-GB)</name>
44
<tag>en-GB</tag>
55
<version>4.1.0</version>
6-
<creationDate>September 2021</creationDate>
6+
<creationDate>October 2021</creationDate>
77
<author>Joomla! Project</author>
88
<authorEmail>[email protected]</authorEmail>
99
<authorUrl>www.joomla.org</authorUrl>

api/language/en-GB/langmetadata.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<metafile client="api">
33
<name>English (en-GB)</name>
44
<version>4.1.0</version>
5-
<creationDate>September 2021</creationDate>
5+
<creationDate>October 2021</creationDate>
66
<author>Joomla! Project</author>
77
<authorEmail>[email protected]</authorEmail>
88
<authorUrl>www.joomla.org</authorUrl>

installation/language/en-GB/langmetadata.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<metafile client="installation">
33
<name>English (United Kingdom)</name>
44
<version>4.1.0</version>
5-
<creationDate>September 2021</creationDate>
5+
<creationDate>October 2021</creationDate>
66
<author>Joomla! Project</author>
77
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
88
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>

language/en-GB/install.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<name>English (en-GB)</name>
44
<tag>en-GB</tag>
55
<version>4.1.0</version>
6-
<creationDate>September 2021</creationDate>
6+
<creationDate>October 2021</creationDate>
77
<author>Joomla! Project</author>
88
<authorEmail>[email protected]</authorEmail>
99
<authorUrl>www.joomla.org</authorUrl>

language/en-GB/langmetadata.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<metafile client="site">
33
<name>English (en-GB)</name>
44
<version>4.1.0</version>
5-
<creationDate>September 2021</creationDate>
5+
<creationDate>October 2021</creationDate>
66
<author>Joomla! Project</author>
77
<authorEmail>[email protected]</authorEmail>
88
<authorUrl>www.joomla.org</authorUrl>

libraries/src/Version.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ final class Version
6161
* @var string
6262
* @since 3.8.0
6363
*/
64-
const EXTRA_VERSION = 'dev';
64+
const EXTRA_VERSION = 'alpha2';
6565

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

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

9090
/**
9191
* Release time.
9292
*
9393
* @var string
9494
* @since 3.5
9595
*/
96-
const RELTIME = '18:25';
96+
const RELTIME = '18:00';
9797

9898
/**
9999
* Release timezone.

0 commit comments

Comments
 (0)