Skip to content

Commit fd39a1c

Browse files
committed
Bump version to 3.0.0-rc
Signed-off-by: Roland Dalmulder <[email protected]>
1 parent 2bfa8d7 commit fd39a1c

File tree

8 files changed

+35
-35
lines changed

8 files changed

+35
-35
lines changed

administrator/components/com_patchtester/PatchTester/Controller/AbstractController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ abstract class AbstractController
2525
* The active application
2626
*
2727
* @var CMSApplication
28-
* @since __DEPLOY_VERSION__
28+
* @since 3.0.0
2929
*/
3030
protected $app;
3131

@@ -65,7 +65,7 @@ public function __construct(CMSApplication $app)
6565
*
6666
* @return CMSApplication
6767
*
68-
* @since __DEPLOY_VERSION__
68+
* @since 3.0.0
6969
*/
7070
public function getApplication()
7171
{
@@ -77,7 +77,7 @@ public function getApplication()
7777
*
7878
* @return Input
7979
*
80-
* @since __DEPLOY_VERSION__
80+
* @since 3.0.0
8181
*/
8282
public function getInput()
8383
{

administrator/components/com_patchtester/PatchTester/Controller/DisplayController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class DisplayController extends AbstractController
2424
* Default ordering value
2525
*
2626
* @var string
27-
* @since __DEPLOY_VERSION__
27+
* @since 3.0.0
2828
*/
2929
protected $defaultFullOrdering = 'a.pull_id DESC';
3030

administrator/components/com_patchtester/PatchTester/Model/AbstractModel.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,23 @@
1414
/**
1515
* Base model for the patch testing component
1616
*
17-
* @since __DEPLOY_VERSION__
17+
* @since 3.0.0
1818
*/
1919
abstract class AbstractModel
2020
{
2121
/**
2222
* The database driver.
2323
*
2424
* @var \JDatabaseDriver
25-
* @since __DEPLOY_VERSION__
25+
* @since 3.0.0
2626
*/
2727
protected $db;
2828

2929
/**
3030
* The model state.
3131
*
3232
* @var Registry
33-
* @since __DEPLOY_VERSION__
33+
* @since 3.0.0
3434
*/
3535
protected $state;
3636

@@ -40,7 +40,7 @@ abstract class AbstractModel
4040
* @param Registry $state The model state.
4141
* @param \JDatabaseDriver $db The database adpater.
4242
*
43-
* @since __DEPLOY_VERSION__
43+
* @since 3.0.0
4444
*/
4545
public function __construct(Registry $state = null, \JDatabaseDriver $db = null)
4646
{
@@ -53,7 +53,7 @@ public function __construct(Registry $state = null, \JDatabaseDriver $db = null)
5353
*
5454
* @return \JDatabaseDriver
5555
*
56-
* @since __DEPLOY_VERSION__
56+
* @since 3.0.0
5757
*/
5858
public function getDb()
5959
{
@@ -65,7 +65,7 @@ public function getDb()
6565
*
6666
* @return Registry
6767
*
68-
* @since __DEPLOY_VERSION__
68+
* @since 3.0.0
6969
*/
7070
public function getState()
7171
{
@@ -79,7 +79,7 @@ public function getState()
7979
*
8080
* @return void
8181
*
82-
* @since __DEPLOY_VERSION__
82+
* @since 3.0.0
8383
*/
8484
public function setDb(\JDatabaseDriver $db)
8585
{
@@ -93,7 +93,7 @@ public function setDb(\JDatabaseDriver $db)
9393
*
9494
* @return void
9595
*
96-
* @since __DEPLOY_VERSION__
96+
* @since 3.0.0
9797
*/
9898
public function setState(Registry $state)
9999
{

administrator/components/com_patchtester/PatchTester/View/AbstractHtmlView.php

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,23 @@
1515
/**
1616
* Base HTML view for the patch testing component
1717
*
18-
* @since __DEPLOY_VERSION__
18+
* @since 3.0.0
1919
*/
2020
abstract class AbstractHtmlView extends AbstractView
2121
{
2222
/**
2323
* The view layout.
2424
*
2525
* @var string
26-
* @since __DEPLOY_VERSION__
26+
* @since 3.0.0
2727
*/
2828
protected $layout = 'default';
2929

3030
/**
3131
* The paths queue.
3232
*
3333
* @var SplPriorityQueue
34-
* @since __DEPLOY_VERSION__
34+
* @since 3.0.0
3535
*/
3636
protected $paths;
3737

@@ -41,7 +41,7 @@ abstract class AbstractHtmlView extends AbstractView
4141
* @param AbstractModel $model The model object.
4242
* @param SplPriorityQueue $paths The paths queue.
4343
*
44-
* @since __DEPLOY_VERSION__
44+
* @since 3.0.0
4545
*/
4646
public function __construct(AbstractModel $model, \SplPriorityQueue $paths = null)
4747
{
@@ -58,7 +58,7 @@ public function __construct(AbstractModel $model, \SplPriorityQueue $paths = nul
5858
*
5959
* @return string The escaped output.
6060
*
61-
* @since __DEPLOY_VERSION__
61+
* @since 3.0.0
6262
*/
6363
public function escape($output)
6464
{
@@ -71,7 +71,7 @@ public function escape($output)
7171
*
7272
* @return string The layout name.
7373
*
74-
* @since __DEPLOY_VERSION__
74+
* @since 3.0.0
7575
*/
7676
public function getLayout()
7777
{
@@ -85,7 +85,7 @@ public function getLayout()
8585
*
8686
* @return mixed The layout file name if found, false otherwise.
8787
*
88-
* @since __DEPLOY_VERSION__
88+
* @since 3.0.0
8989
*/
9090
public function getPath($layout)
9191
{
@@ -103,7 +103,7 @@ public function getPath($layout)
103103
*
104104
* @return SplPriorityQueue The paths queue.
105105
*
106-
* @since __DEPLOY_VERSION__
106+
* @since 3.0.0
107107
*/
108108
public function getPaths()
109109
{
@@ -117,7 +117,7 @@ public function getPaths()
117117
*
118118
* @return string The output of the the template script.
119119
*
120-
* @since __DEPLOY_VERSION__
120+
* @since 3.0.0
121121
* @throws \RuntimeException
122122
*/
123123
public function loadTemplate($tpl = null)
@@ -162,7 +162,7 @@ public function loadTemplate($tpl = null)
162162
*
163163
* @return string The rendered view.
164164
*
165-
* @since __DEPLOY_VERSION__
165+
* @since 3.0.0
166166
* @throws RuntimeException
167167
*/
168168
public function render()
@@ -195,7 +195,7 @@ public function render()
195195
*
196196
* @return $this
197197
*
198-
* @since __DEPLOY_VERSION__
198+
* @since 3.0.0
199199
*/
200200
public function setLayout($layout)
201201
{
@@ -211,7 +211,7 @@ public function setLayout($layout)
211211
*
212212
* @return $this
213213
*
214-
* @since __DEPLOY_VERSION__
214+
* @since 3.0.0
215215
*/
216216
public function setPaths(\SplPriorityQueue $paths)
217217
{

administrator/components/com_patchtester/PatchTester/View/AbstractView.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
/**
1414
* Base view for the patch testing component
1515
*
16-
* @since __DEPLOY_VERSION__
16+
* @since 3.0.0
1717
*/
1818
abstract class AbstractView
1919
{
2020
/**
2121
* The model object.
2222
*
2323
* @var AbstractModel
24-
* @since __DEPLOY_VERSION__
24+
* @since 3.0.0
2525
*/
2626
protected $model;
2727

@@ -30,7 +30,7 @@ abstract class AbstractView
3030
*
3131
* @param AbstractModel $model The model object.
3232
*
33-
* @since __DEPLOY_VERSION__
33+
* @since 3.0.0
3434
*/
3535
public function __construct(AbstractModel $model)
3636
{
@@ -44,7 +44,7 @@ public function __construct(AbstractModel $model)
4444
*
4545
* @return string The escaped output.
4646
*
47-
* @since __DEPLOY_VERSION__
47+
* @since 3.0.0
4848
*/
4949
public function escape($output)
5050
{

administrator/components/com_patchtester/PatchTester/View/Pulls/PullsHtmlView.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ protected function addToolbar()
163163
*
164164
* @return array
165165
*
166-
* @since __DEPLOY_VERSION__
166+
* @since 3.0.0
167167
*/
168168
protected function getLimitOptions()
169169
{

administrator/components/com_patchtester/patchtester.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<extension type="component" version="3.6" method="upgrade">
33
<name>com_patchtester</name>
44
<author>Joomla! Project</author>
5-
<creationDate>01-September-2018</creationDate>
5+
<creationDate>04-April-2020</creationDate>
66
<copyright>(C) 2011 - 2012 Ian MacLennan, (C) 2013 - 2018 Open Source Matters, Inc. All rights reserved.</copyright>
77
<license>GNU General Public License version 2 or later</license>
88
<authorEmail>[email protected]</authorEmail>
99
<authorUrl>https://www.joomla.org</authorUrl>
10-
<version>3.0.0-beta5-dev</version>
10+
<version>3.0.0-rc</version>
1111
<description>COM_PATCHTESTER_XML_DESCRIPTION</description>
1212
<scriptfile>script.php</scriptfile>
1313
<install>

manifest.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
<description>Joomla! CMS Patch Tester Component</description>
2323
<element>com_patchtester</element>
2424
<type>component</type>
25-
<version>3.0.0-beta4</version>
25+
<version>3.0.0-rc</version>
2626
<client>administrator</client>
27-
<infourl title="Patch Tester Component">https://github.com/joomla-extensions/patchtester/releases/tag/3.0.0-beta4</infourl>
27+
<infourl title="Patch Tester Component">https://github.com/joomla-extensions/patchtester/releases/tag/3.0.0.rc</infourl>
2828
<downloads>
29-
<downloadurl type="full" format="zip">https://github.com/joomla-extensions/patchtester/releases/download/3.0.0-beta4/com_patchtester.zip</downloadurl>
29+
<downloadurl type="full" format="zip">https://github.com/joomla-extensions/patchtester/releases/download/3.0.0.rc/com_patchtester.zip</downloadurl>
3030
</downloads>
31-
<sha384>dc5a4bf9d8d9f4ed9ce40d73885d543a2a8b3277e46519e8cf4759d8e1b5f0901b7d438033ffd0339afcb6d6a7536eb6</sha384>
31+
<sha384>adb3d5521c136266eb110c42d466578bd4c8e16c4ef1d989aeeb4e383bdaee20a68297e069a0e9273ba918850bdd59a0</sha384>
3232
<tags>
3333
<tag>beta</tag>
3434
</tags>

0 commit comments

Comments
 (0)