Skip to content

Commit

Permalink
Prepare 3.8.12 release candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Babker committed Aug 24, 2018
1 parent d189796 commit 6c718c0
Show file tree
Hide file tree
Showing 17 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion administrator/components/com_banners/models/banner.php
Expand Up @@ -131,7 +131,7 @@ protected function canDelete($record)
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 3.8.12
*/
public function generateTitle($categoryId, $table)
{
Expand Down
2 changes: 1 addition & 1 deletion administrator/components/com_content/models/article.php
Expand Up @@ -54,7 +54,7 @@ class ContentModelArticle extends JModelAdmin
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 3.8.12
*/
protected function cleanupPostBatchCopy(\JTableInterface $table, $newId, $oldId)
{
Expand Down
6 changes: 3 additions & 3 deletions administrator/components/com_finder/helpers/indexer/token.php
Expand Up @@ -91,23 +91,23 @@ class FinderIndexerToken
* The container for matches.
*
* @var array
* @since __DEPLOY_VERSION__
* @since 3.8.12
*/
public $matches = array();

/**
* Is derived token (from individual words)
*
* @var boolean
* @since __DEPLOY_VERSION__
* @since 3.8.12
*/
public $derived;

/**
* The suggested term
*
* @var string
* @since __DEPLOY_VERSION__
* @since 3.8.12
*/
public $suggestion;

Expand Down
2 changes: 1 addition & 1 deletion administrator/language/en-GB/en-GB.xml
Expand Up @@ -2,7 +2,7 @@
<metafile version="3.8" client="administrator">
<name>English (en-GB)</name>
<version>3.8.12</version>
<creationDate>July 2018</creationDate>
<creationDate>August 2018</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
2 changes: 1 addition & 1 deletion administrator/language/en-GB/install.xml
Expand Up @@ -3,7 +3,7 @@
<name>English (en-GB)</name>
<tag>en-GB</tag>
<version>3.8.12</version>
<creationDate>July 2018</creationDate>
<creationDate>August 2018</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
4 changes: 2 additions & 2 deletions administrator/manifests/files/joomla.xml
Expand Up @@ -6,8 +6,8 @@
<authorUrl>www.joomla.org</authorUrl>
<copyright>(C) 2005 - 2018 Open Source Matters. All rights reserved</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<version>3.8.12-dev</version>
<creationDate>July 2018</creationDate>
<version>3.8.12-rc</version>
<creationDate>August 2018</creationDate>
<description>FILES_JOOMLA_XML_DESCRIPTION</description>

<scriptfile>administrator/components/com_admin/script.php</scriptfile>
Expand Down
2 changes: 1 addition & 1 deletion administrator/manifests/packages/pkg_en-GB.xml
Expand Up @@ -3,7 +3,7 @@
<name>English (en-GB) Language Pack</name>
<packagename>en-GB</packagename>
<version>3.8.12.1</version>
<creationDate>July 2018</creationDate>
<creationDate>August 2018</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/en-GB/en-GB.xml
Expand Up @@ -4,7 +4,7 @@
client="installation">
<name>English (United Kingdom)</name>
<version>3.8.12</version>
<creationDate>July 2018</creationDate>
<creationDate>August 2018</creationDate>
<author>Joomla! Project</author>
<copyright>Copyright (C) 2005 - 2018 Open Source Matters. All rights reserved.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
Expand Down
2 changes: 1 addition & 1 deletion language/en-GB/en-GB.xml
Expand Up @@ -2,7 +2,7 @@
<metafile version="3.8" client="site">
<name>English (en-GB)</name>
<version>3.8.12</version>
<creationDate>July 2018</creationDate>
<creationDate>August 2018</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
2 changes: 1 addition & 1 deletion language/en-GB/install.xml
Expand Up @@ -3,7 +3,7 @@
<name>English (en-GB)</name>
<tag>en-GB</tag>
<version>3.8.12</version>
<creationDate>July 2018</creationDate>
<creationDate>August 2018</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/MVC/Model/AdminModel.php
Expand Up @@ -507,7 +507,7 @@ protected function batchCopy($value, $pks, $contexts)
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 3.8.12
*/
protected function cleanupPostBatchCopy(\JTableInterface $table, $newId, $oldId)
{
Expand Down
10 changes: 5 additions & 5 deletions libraries/src/Version.php
Expand Up @@ -60,7 +60,7 @@ final class Version
* @var string
* @since 3.8.0
*/
const EXTRA_VERSION = 'dev';
const EXTRA_VERSION = 'rc';

/**
* Release version.
Expand All @@ -78,15 +78,15 @@ final class Version
* @since 3.5
* @deprecated 4.0 Use separated version constants instead
*/
const DEV_LEVEL = '12-dev';
const DEV_LEVEL = '12-rc';

/**
* Development status.
*
* @var string
* @since 3.5
*/
const DEV_STATUS = 'Development';
const DEV_STATUS = 'Release Candidate';

/**
* Build number.
Expand All @@ -111,15 +111,15 @@ final class Version
* @var string
* @since 3.5
*/
const RELDATE = '31-July-2018';
const RELDATE = '24-August-2018';

/**
* Release time.
*
* @var string
* @since 3.5
*/
const RELTIME = '14:00';
const RELTIME = '16:00';

/**
* Release timezone.
Expand Down
Expand Up @@ -149,7 +149,7 @@ public function testEscape($text, $extra, $expected)
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 3.8.12
*/
public function testEscapeNonLocaleAware()
{
Expand Down
Expand Up @@ -149,7 +149,7 @@ public function testEscape($text, $extra, $expected)
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 3.8.12
*/
public function testEscapeNonLocaleAware()
{
Expand Down
Expand Up @@ -138,7 +138,7 @@ public function testEscape($text, $extra, $expected)
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 3.8.12
*/
public function testEscapeNonLocaleAware()
{
Expand Down
Expand Up @@ -234,7 +234,7 @@ public function testEscape($text, $extra, $result)
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 3.8.12
*/
public function testEscapeNonLocaleAware()
{
Expand Down
Expand Up @@ -91,7 +91,7 @@ public function testEscape($text, $extra, $expected)
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 3.8.12
*/
public function testEscapeNonLocaleAware()
{
Expand Down

0 comments on commit 6c718c0

Please sign in to comment.