Skip to content

Commit

Permalink
Release Joomla! 5.2.0 Beta 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Hackwar committed Sep 13, 2024
1 parent 5e4028b commit 64dffed
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ public function getTask(array $options = []): ?\stdClass
*
* @param \JDatabaseDriver $db The database driver to use.
* @return bool True if there are running tasks, false otherwise.
* @since __DEPLOY_VERSION__
* @since 4.4.9
*/
private function hasRunningTasks($db): bool
{
Expand Down Expand Up @@ -445,7 +445,7 @@ private function hasRunningTasks($db): bool
* - allowDisabled: Whether to allow disabled tasks.
* - id: The ID of the task.
* @return Query The lock query.
* @since __DEPLOY_VERSION__
* @since 5.2.0
*/
private function buildLockQuery($db, $now, $options)
{
Expand Down Expand Up @@ -489,7 +489,7 @@ static function (TaskOption $taskOption): string {
* - allowDisabled: Whether to allow disabled tasks.
* @return array The ID of the next task, or an empty array if no task is found.
*
* @since __DEPLOY_VERSION__
* @since 5.2.0
* @throws \RuntimeException If there is an error executing the query.
*/
private function getNextTaskId($db, $now, $options)
Expand Down Expand Up @@ -537,7 +537,7 @@ static function (TaskOption $taskOption): string {
* @param \JDatabaseDriver $db The database driver to use.
* @param string $now The current time in the database's time format.
* @return \stdClass|null The fetched task object, or null if no task was found.
* @since __DEPLOY_VERSION__
* @since 5.2.0
* @throws \RuntimeException If there was an error executing the query.
*/
private function fetchTask($db, $now): ?\stdClass
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) 2019 Open Source Matters, Inc.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<version>5.2.0-beta3-dev</version>
<version>5.2.0-beta3</version>
<creationDate>2024-09</creationDate>
<description>FILES_JOOMLA_XML_DESCRIPTION</description>

Expand Down
2 changes: 1 addition & 1 deletion libraries/src/Event/User/AbstractLoginEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ abstract class AbstractLoginEvent extends UserEvent
*
* @throws \BadMethodCallException
*
* @since __DEPLOY_VERSION__
* @since 5.2.0
*/
public function __construct($name, array $arguments = [])
{
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/Event/User/AbstractLogoutEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ abstract class AbstractLogoutEvent extends UserEvent
*
* @throws \BadMethodCallException
*
* @since __DEPLOY_VERSION__
* @since 5.2.0
*/
public function __construct($name, array $arguments = [])
{
Expand Down
6 changes: 3 additions & 3 deletions libraries/src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@ final class Version
* @var string
* @since 3.8.0
*/
public const EXTRA_VERSION = 'beta3-dev';
public const EXTRA_VERSION = 'beta3';

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

/**
* Code name.
Expand All @@ -98,7 +98,7 @@ final class Version
* @var string
* @since 3.5
*/
public const RELTIME = '00:00';
public const RELTIME = '16:00';

/**
* Release timezone.
Expand Down
2 changes: 1 addition & 1 deletion plugins/system/guidedtours/src/Extension/GuidedTours.php
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ private function processTour($item)
*
* @return string
*
* @since __DEPLOY_VERSION__
* @since 5.2.0
*/
private function fixImagePaths($description)
{
Expand Down

0 comments on commit 64dffed

Please sign in to comment.