Skip to content

Commit

Permalink
Bump version to 3.0.0-rc
Browse files Browse the repository at this point in the history
Signed-off-by: Roland Dalmulder <contact@rolandd.com>
  • Loading branch information
roland-d committed Apr 4, 2020
1 parent 2bfa8d7 commit fd39a1c
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 35 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ abstract class AbstractController
* The active application
*
* @var CMSApplication
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
protected $app;

Expand Down Expand Up @@ -65,7 +65,7 @@ public function __construct(CMSApplication $app)
*
* @return CMSApplication
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
public function getApplication()
{
Expand All @@ -77,7 +77,7 @@ public function getApplication()
*
* @return Input
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
public function getInput()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class DisplayController extends AbstractController
* Default ordering value
*
* @var string
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
protected $defaultFullOrdering = 'a.pull_id DESC';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@
/**
* Base model for the patch testing component
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
abstract class AbstractModel
{
/**
* The database driver.
*
* @var \JDatabaseDriver
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
protected $db;

/**
* The model state.
*
* @var Registry
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
protected $state;

Expand All @@ -40,7 +40,7 @@ abstract class AbstractModel
* @param Registry $state The model state.
* @param \JDatabaseDriver $db The database adpater.
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
public function __construct(Registry $state = null, \JDatabaseDriver $db = null)
{
Expand All @@ -53,7 +53,7 @@ public function __construct(Registry $state = null, \JDatabaseDriver $db = null)
*
* @return \JDatabaseDriver
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
public function getDb()
{
Expand All @@ -65,7 +65,7 @@ public function getDb()
*
* @return Registry
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
public function getState()
{
Expand All @@ -79,7 +79,7 @@ public function getState()
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
public function setDb(\JDatabaseDriver $db)
{
Expand All @@ -93,7 +93,7 @@ public function setDb(\JDatabaseDriver $db)
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
public function setState(Registry $state)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@
/**
* Base HTML view for the patch testing component
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
abstract class AbstractHtmlView extends AbstractView
{
/**
* The view layout.
*
* @var string
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
protected $layout = 'default';

/**
* The paths queue.
*
* @var SplPriorityQueue
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
protected $paths;

Expand All @@ -41,7 +41,7 @@ abstract class AbstractHtmlView extends AbstractView
* @param AbstractModel $model The model object.
* @param SplPriorityQueue $paths The paths queue.
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
public function __construct(AbstractModel $model, \SplPriorityQueue $paths = null)
{
Expand All @@ -58,7 +58,7 @@ public function __construct(AbstractModel $model, \SplPriorityQueue $paths = nul
*
* @return string The escaped output.
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
public function escape($output)
{
Expand All @@ -71,7 +71,7 @@ public function escape($output)
*
* @return string The layout name.
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
public function getLayout()
{
Expand All @@ -85,7 +85,7 @@ public function getLayout()
*
* @return mixed The layout file name if found, false otherwise.
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
public function getPath($layout)
{
Expand All @@ -103,7 +103,7 @@ public function getPath($layout)
*
* @return SplPriorityQueue The paths queue.
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
public function getPaths()
{
Expand All @@ -117,7 +117,7 @@ public function getPaths()
*
* @return string The output of the the template script.
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
* @throws \RuntimeException
*/
public function loadTemplate($tpl = null)
Expand Down Expand Up @@ -162,7 +162,7 @@ public function loadTemplate($tpl = null)
*
* @return string The rendered view.
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
* @throws RuntimeException
*/
public function render()
Expand Down Expand Up @@ -195,7 +195,7 @@ public function render()
*
* @return $this
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
public function setLayout($layout)
{
Expand All @@ -211,7 +211,7 @@ public function setLayout($layout)
*
* @return $this
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
public function setPaths(\SplPriorityQueue $paths)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
/**
* Base view for the patch testing component
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
abstract class AbstractView
{
/**
* The model object.
*
* @var AbstractModel
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
protected $model;

Expand All @@ -30,7 +30,7 @@ abstract class AbstractView
*
* @param AbstractModel $model The model object.
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
public function __construct(AbstractModel $model)
{
Expand All @@ -44,7 +44,7 @@ public function __construct(AbstractModel $model)
*
* @return string The escaped output.
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
public function escape($output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ protected function addToolbar()
*
* @return array
*
* @since __DEPLOY_VERSION__
* @since 3.0.0
*/
protected function getLimitOptions()
{
Expand Down
4 changes: 2 additions & 2 deletions administrator/components/com_patchtester/patchtester.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<extension type="component" version="3.6" method="upgrade">
<name>com_patchtester</name>
<author>Joomla! Project</author>
<creationDate>01-September-2018</creationDate>
<creationDate>04-April-2020</creationDate>
<copyright>(C) 2011 - 2012 Ian MacLennan, (C) 2013 - 2018 Open Source Matters, Inc. All rights reserved.</copyright>
<license>GNU General Public License version 2 or later</license>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>https://www.joomla.org</authorUrl>
<version>3.0.0-beta5-dev</version>
<version>3.0.0-rc</version>
<description>COM_PATCHTESTER_XML_DESCRIPTION</description>
<scriptfile>script.php</scriptfile>
<install>
Expand Down
8 changes: 4 additions & 4 deletions manifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
<description>Joomla! CMS Patch Tester Component</description>
<element>com_patchtester</element>
<type>component</type>
<version>3.0.0-beta4</version>
<version>3.0.0-rc</version>
<client>administrator</client>
<infourl title="Patch Tester Component">https://github.com/joomla-extensions/patchtester/releases/tag/3.0.0-beta4</infourl>
<infourl title="Patch Tester Component">https://github.com/joomla-extensions/patchtester/releases/tag/3.0.0.rc</infourl>
<downloads>
<downloadurl type="full" format="zip">https://github.com/joomla-extensions/patchtester/releases/download/3.0.0-beta4/com_patchtester.zip</downloadurl>
<downloadurl type="full" format="zip">https://github.com/joomla-extensions/patchtester/releases/download/3.0.0.rc/com_patchtester.zip</downloadurl>
</downloads>
<sha384>dc5a4bf9d8d9f4ed9ce40d73885d543a2a8b3277e46519e8cf4759d8e1b5f0901b7d438033ffd0339afcb6d6a7536eb6</sha384>
<sha384>adb3d5521c136266eb110c42d466578bd4c8e16c4ef1d989aeeb4e383bdaee20a68297e069a0e9273ba918850bdd59a0</sha384>
<tags>
<tag>beta</tag>
</tags>
Expand Down

0 comments on commit fd39a1c

Please sign in to comment.