Skip to content

Commit d6e1301

Browse files
committed
Joomla! 6.0.0 Beta 3
1 parent e3bf2d3 commit d6e1301

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

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>6.0.0-beta3-dev</version>
9+
<version>6.0.0-beta3</version>
1010
<creationDate>2025-09</creationDate>
1111
<description>FILES_JOOMLA_XML_DESCRIPTION</description>
1212

libraries/src/Version.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,15 @@ final class Version
6666
* @var string
6767
* @since 3.8.0
6868
*/
69-
public const EXTRA_VERSION = 'beta3-dev';
69+
public const EXTRA_VERSION = 'beta3';
7070

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

7979
/**
8080
* Code name.
@@ -90,7 +90,7 @@ final class Version
9090
* @var string
9191
* @since 3.5
9292
*/
93-
public const RELDATE = '2-September-2025';
93+
public const RELDATE = '16-September-2025';
9494

9595
/**
9696
* Release time.
@@ -99,7 +99,7 @@ final class Version
9999
* @since 3.5
100100
*/
101101

102-
public const RELTIME = '17:01';
102+
public const RELTIME = '16:30';
103103

104104
/**
105105
* Release timezone.

libraries/src/Versioning/VersionableModelInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function loadHistory(int $historyId);
4040
*
4141
* @return boolean True on success, False on error.
4242
*
43-
* @since __DEPLOY_VERSION__
43+
* @since 6.0.0
4444
*/
4545
public function saveHistory(array $data, string $context);
4646
}

libraries/src/Versioning/VersionableModelTrait.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ trait VersionableModelTrait
3535
* Fields to be ignored when calculating the hash.
3636
*
3737
* @var array
38-
* @since __DEPLOY_VERSION__
38+
* @since 6.0.0
3939
*/
4040
protected $ignoreChanges = [
4141
'modified_by',
@@ -57,7 +57,7 @@ trait VersionableModelTrait
5757
* Fields to be converted to int when calculating the hash.
5858
*
5959
* @var array
60-
* @since __DEPLOY_VERSION__
60+
* @since 6.0.0
6161
*/
6262
protected $convertToInt = ['publish_up', 'publish_down', 'ordering', 'featured'];
6363

@@ -185,7 +185,7 @@ public function loadHistory(int $historyId)
185185
*
186186
* @return string SHA1 hash on success. Empty string on failure.
187187
*
188-
* @since __DEPLOY_VERSION__
188+
* @since 6.0.0
189189
*/
190190
public function getSha1($data)
191191
{
@@ -230,7 +230,7 @@ public function getSha1($data)
230230
*
231231
* @return void
232232
*
233-
* @since __DEPLOY_VERSION__
233+
* @since 6.0.0
234234
*/
235235
public function setIgnoreChanges(array $ignoreChanges): void
236236
{
@@ -244,7 +244,7 @@ public function setIgnoreChanges(array $ignoreChanges): void
244244
*
245245
* @return void
246246
*
247-
* @since __DEPLOY_VERSION__
247+
* @since 6.0.0
248248
*/
249249
public function setConvertToInt(array $convertToInt): void
250250
{
@@ -259,7 +259,7 @@ public function setConvertToInt(array $convertToInt): void
259259
*
260260
* @return boolean True on success, False on error.
261261
*
262-
* @since __DEPLOY_VERSION__
262+
* @since 6.0.0
263263
*/
264264
public function saveHistory(array $data, string $context)
265265
{
@@ -295,7 +295,7 @@ public function saveHistory(array $data, string $context)
295295
*
296296
* @return boolean true on success, otherwise false.
297297
*
298-
* @since __DEPLOY_VERSION__
298+
* @since 6.0.0
299299
*/
300300
public function deleteHistory($typeAlias, $id)
301301
{
@@ -322,7 +322,7 @@ public function deleteHistory($typeAlias, $id)
322322
*
323323
* @return boolean True on success, otherwise false.
324324
*
325-
* @since __DEPLOY_VERSION__
325+
* @since 6.0.0
326326
* @throws \Exception
327327
*/
328328
public function storeHistory(string $typeAlias, int $id, mixed $data, string $note = '', string $hash = '')

0 commit comments

Comments
 (0)