Skip to content

Commit

Permalink
Bump to 4.1.1-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
bembelimen committed Mar 18, 2022
1 parent ef1ca59 commit 78c8ce3
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class UpdatesiteTable extends Table
*
* @var boolean
*
* @since __DEPLOY_VERSION__
* @since 4.1.1
*/
protected $_supportNullValue = true;

Expand Down
2 changes: 1 addition & 1 deletion administrator/language/en-GB/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<name>English (en-GB)</name>
<tag>en-GB</tag>
<version>4.1.1</version>
<creationDate>February 2022</creationDate>
<creationDate>March 2022</creationDate>
<author>Joomla! Project</author>
<authorEmail>[email protected]</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
2 changes: 1 addition & 1 deletion administrator/language/en-GB/langmetadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<metafile client="administrator">
<name>English (en-GB)</name>
<version>4.1.1</version>
<creationDate>February 2022</creationDate>
<creationDate>March 2022</creationDate>
<author>Joomla! Project</author>
<authorEmail>[email protected]</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
4 changes: 2 additions & 2 deletions administrator/manifests/files/joomla.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<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>4.1.1-dev</version>
<creationDate>February 2022</creationDate>
<version>4.1.1-rc1</version>
<creationDate>March 2022</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
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<name>English (en-GB) Language Pack</name>
<packagename>en-GB</packagename>
<version>4.1.1.1</version>
<creationDate>February 2022</creationDate>
<creationDate>March 2022</creationDate>
<author>Joomla! Project</author>
<authorEmail>[email protected]</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
2 changes: 1 addition & 1 deletion api/language/en-GB/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<name>English (en-GB)</name>
<tag>en-GB</tag>
<version>4.1.1</version>
<creationDate>February 2022</creationDate>
<creationDate>March 2022</creationDate>
<author>Joomla! Project</author>
<authorEmail>[email protected]</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
2 changes: 1 addition & 1 deletion api/language/en-GB/langmetadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<metafile client="api">
<name>English (en-GB)</name>
<version>4.1.1</version>
<creationDate>February 2022</creationDate>
<creationDate>March 2022</creationDate>
<author>Joomla! Project</author>
<authorEmail>[email protected]</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/en-GB/langmetadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<metafile client="installation">
<name>English (United Kingdom)</name>
<version>4.1.1</version>
<creationDate>February 2022</creationDate>
<creationDate>March 2022</creationDate>
<author>Joomla! Project</author>
<copyright>(C) 2005 Open Source Matters, Inc.</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/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<name>English (en-GB)</name>
<tag>en-GB</tag>
<version>4.1.1</version>
<creationDate>February 2022</creationDate>
<creationDate>March 2022</creationDate>
<author>Joomla! Project</author>
<authorEmail>[email protected]</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
2 changes: 1 addition & 1 deletion language/en-GB/langmetadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<metafile client="site">
<name>English (en-GB)</name>
<version>4.1.1</version>
<creationDate>February 2022</creationDate>
<creationDate>March 2022</creationDate>
<author>Joomla! Project</author>
<authorEmail>[email protected]</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
8 changes: 4 additions & 4 deletions libraries/src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ final class Version
* @var string
* @since 3.8.0
*/
const EXTRA_VERSION = 'dev';
const EXTRA_VERSION = 'rc1';

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

/**
* Code name.
Expand All @@ -85,15 +85,15 @@ final class Version
* @var string
* @since 3.5
*/
const RELDATE = '14-February-2022';
const RELDATE = '18-March-2022';

/**
* Release time.
*
* @var string
* @since 3.5
*/
const RELTIME = '23:37';
const RELTIME = '20:00';

/**
* Release timezone.
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/WebAsset/WebAssetManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public function getRegistry(): WebAssetRegistry
*
* @return self
*
* @since __DEPLOY_VERSION__
* @since 4.1.1
*/
public function reset(): WebAssetManagerInterface
{
Expand Down

0 comments on commit 78c8ce3

Please sign in to comment.