Skip to content

Commit b7903e5

Browse files
committed
Revert to dev
Signed-off-by: Martin Kopp <[email protected]>
1 parent f8b4756 commit b7903e5

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

administrator/language/en-GB/install.xml

+1-1
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.4.8</version>
5+
<version>4.4.9</version>
66
<creationDate>2024-08</creationDate>
77
<author>Joomla! Project</author>
88
<authorEmail>[email protected]</authorEmail>

administrator/language/en-GB/langmetadata.xml

+1-1
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.4.8</version>
4+
<version>4.4.9</version>
55
<creationDate>2024-08</creationDate>
66
<author>Joomla! Project</author>
77
<authorEmail>[email protected]</authorEmail>

administrator/manifests/files/joomla.xml

+1-1
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.4.8-rc3</version>
9+
<version>4.4.9-dev</version>
1010
<creationDate>2024-08</creationDate>
1111
<description>FILES_JOOMLA_XML_DESCRIPTION</description>
1212

administrator/manifests/packages/pkg_en-GB.xml

+1-1
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.4.8.1</version>
5+
<version>4.4.9.1</version>
66
<creationDate>2024-08</creationDate>
77
<author>Joomla! Project</author>
88
<authorEmail>[email protected]</authorEmail>

api/language/en-GB/install.xml

+1-1
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.4.8</version>
5+
<version>4.4.9</version>
66
<creationDate>2024-08</creationDate>
77
<author>Joomla! Project</author>
88
<authorEmail>[email protected]</authorEmail>

api/language/en-GB/langmetadata.xml

+1-1
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.4.8</version>
4+
<version>4.4.9</version>
55
<creationDate>2024-08</creationDate>
66
<author>Joomla! Project</author>
77
<authorEmail>[email protected]</authorEmail>

installation/language/en-GB/langmetadata.xml

+1-1
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.4.8</version>
4+
<version>4.4.9</version>
55
<creationDate>2024-08</creationDate>
66
<author>Joomla! Project</author>
77
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>

language/en-GB/install.xml

+1-1
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.4.8</version>
5+
<version>4.4.9</version>
66
<creationDate>2024-08</creationDate>
77
<author>Joomla! Project</author>
88
<authorEmail>[email protected]</authorEmail>

language/en-GB/langmetadata.xml

+1-1
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.4.8</version>
4+
<version>4.4.9</version>
55
<creationDate>2024-08</creationDate>
66
<author>Joomla! Project</author>
77
<authorEmail>[email protected]</authorEmail>

libraries/src/Version.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ final class Version
5555
* @var integer
5656
* @since 3.8.0
5757
*/
58-
public const PATCH_VERSION = 8;
58+
public const PATCH_VERSION = 9;
5959

6060
/**
6161
* Extra release version info.
@@ -66,15 +66,15 @@ final class Version
6666
* @var string
6767
* @since 3.8.0
6868
*/
69-
public const EXTRA_VERSION = 'rc3';
69+
public const EXTRA_VERSION = 'dev';
7070

7171
/**
7272
* Development status.
7373
*
7474
* @var string
7575
* @since 3.5
7676
*/
77-
public const DEV_STATUS = 'Release Candidate';
77+
public const DEV_STATUS = 'Development';
7878

7979
/**
8080
* Code name.
@@ -98,7 +98,7 @@ final class Version
9898
* @var string
9999
* @since 3.5
100100
*/
101-
public const RELTIME = '19:00';
101+
public const RELTIME = '19:01';
102102

103103
/**
104104
* Release timezone.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "joomla",
3-
"version": "4.4.8",
3+
"version": "4.4.9",
44
"description": "Joomla CMS",
55
"license": "GPL-2.0-or-later",
66
"repository": {

0 commit comments

Comments
 (0)