Skip to content

Commit 91fb43e

Browse files
author
Michael Babker
committed
Tag 3.0.0 alpha
Signed-off-by: Michael Babker <[email protected]>
1 parent 928d314 commit 91fb43e

File tree

5 files changed

+26
-26
lines changed

5 files changed

+26
-26
lines changed

administrator/components/com_patchtester/PatchTester/GitHub/Exception/UnexpectedResponse.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
/**
1212
* Exception representing an unexpected response
1313
*
14-
* @since __DEPLOY_VERSION__
14+
* @since 3.0.0
1515
*/
1616
class UnexpectedResponse extends \DomainException
1717
{
1818
/**
1919
* The Response object.
2020
*
2121
* @var \JHttpResponse
22-
* @since __DEPLOY_VERSION__
22+
* @since 3.0.0
2323
*/
2424
private $response;
2525

@@ -31,7 +31,7 @@ class UnexpectedResponse extends \DomainException
3131
* @param integer $code The Exception code.
3232
* @param \Exception $previous The previous exception used for the exception chaining.
3333
*
34-
* @since __DEPLOY_VERSION__
34+
* @since 3.0.0
3535
*/
3636
public function __construct(\JHttpResponse $response, $message = '', $code = 0, \Exception $previous = null)
3737
{
@@ -45,7 +45,7 @@ public function __construct(\JHttpResponse $response, $message = '', $code = 0,
4545
*
4646
* @return \JHttpResponse
4747
*
48-
* @since __DEPLOY_VERSION__
48+
* @since 3.0.0
4949
*/
5050
public function getResponse()
5151
{

administrator/components/com_patchtester/PatchTester/GitHub/GitHub.php

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,23 @@
1313
/**
1414
* Helper class for interacting with the GitHub API.
1515
*
16-
* @since __DEPLOY_VERSION__
16+
* @since 3.0.0
1717
*/
1818
class GitHub
1919
{
2020
/**
2121
* Options for the connector.
2222
*
2323
* @var Registry
24-
* @since __DEPLOY_VERSION__
24+
* @since 3.0.0
2525
*/
2626
protected $options;
2727

2828
/**
2929
* The HTTP client object to use in sending HTTP requests.
3030
*
3131
* @var \JHttp
32-
* @since __DEPLOY_VERSION__
32+
* @since 3.0.0
3333
*/
3434
protected $client;
3535

@@ -39,7 +39,7 @@ class GitHub
3939
* @param Registry $options Connector options.
4040
* @param \JHttp $client The HTTP client object.
4141
*
42-
* @since __DEPLOY_VERSION__
42+
* @since 3.0.0
4343
*/
4444
public function __construct(Registry $options = null, \JHttp $client = null)
4545
{
@@ -59,7 +59,7 @@ public function __construct(Registry $options = null, \JHttp $client = null)
5959
*
6060
* @return string The request URL.
6161
*
62-
* @since __DEPLOY_VERSION__
62+
* @since 3.0.0
6363
*/
6464
protected function fetchUrl($path, $page = 0, $limit = 0)
6565
{
@@ -105,7 +105,7 @@ protected function fetchUrl($path, $page = 0, $limit = 0)
105105
*
106106
* @return \JHttp
107107
*
108-
* @since __DEPLOY_VERSION__
108+
* @since 3.0.0
109109
*/
110110
public function getClient()
111111
{
@@ -121,7 +121,7 @@ public function getClient()
121121
*
122122
* @return \JHttpResponse
123123
*
124-
* @since __DEPLOY_VERSION__
124+
* @since 3.0.0
125125
*/
126126
public function getDiffForPullRequest($user, $repo, $pullId)
127127
{
@@ -146,7 +146,7 @@ public function getDiffForPullRequest($user, $repo, $pullId)
146146
*
147147
* @return \JHttpResponse
148148
*
149-
* @since __DEPLOY_VERSION__
149+
* @since 3.0.0
150150
*/
151151
public function getFileContents($user, $repo, $path, $ref = null)
152152
{
@@ -174,7 +174,7 @@ public function getFileContents($user, $repo, $path, $ref = null)
174174
*
175175
* @return \JHttpResponse
176176
*
177-
* @since __DEPLOY_VERSION__
177+
* @since 3.0.0
178178
*/
179179
public function getFilesForPullRequest($user, $repo, $pullId)
180180
{
@@ -196,7 +196,7 @@ public function getFilesForPullRequest($user, $repo, $pullId)
196196
*
197197
* @return \JHttpResponse
198198
*
199-
* @since __DEPLOY_VERSION__
199+
* @since 3.0.0
200200
*/
201201
public function getOpenIssues($user, $repo, $page = 0, $limit = 0)
202202
{
@@ -213,7 +213,7 @@ public function getOpenIssues($user, $repo, $page = 0, $limit = 0)
213213
*
214214
* @return mixed The option value.
215215
*
216-
* @since __DEPLOY_VERSION__
216+
* @since 3.0.0
217217
*/
218218
public function getOption($key, $default = null)
219219
{
@@ -229,7 +229,7 @@ public function getOption($key, $default = null)
229229
*
230230
* @return \JHttpResponse
231231
*
232-
* @since __DEPLOY_VERSION__
232+
* @since 3.0.0
233233
*/
234234
public function getPullRequest($user, $repo, $pullId)
235235
{
@@ -246,7 +246,7 @@ public function getPullRequest($user, $repo, $pullId)
246246
*
247247
* @return \JHttpResponse
248248
*
249-
* @since __DEPLOY_VERSION__
249+
* @since 3.0.0
250250
*/
251251
public function getRateLimit()
252252
{
@@ -263,7 +263,7 @@ public function getRateLimit()
263263
*
264264
* @return \JHttpResponse
265265
*
266-
* @since __DEPLOY_VERSION__
266+
* @since 3.0.0
267267
* @throws Exception\UnexpectedResponse
268268
*/
269269
protected function processResponse(\JHttpResponse $response, $expectedCode = 200)
@@ -293,7 +293,7 @@ protected function processResponse(\JHttpResponse $response, $expectedCode = 200
293293
*
294294
* @return array Associative array containing the prepared URL and request headers
295295
*
296-
* @since __DEPLOY_VERSION__
296+
* @since 3.0.0
297297
*/
298298
protected function prepareRequest($path, $page = 0, $limit = 0, array $headers = array())
299299
{
@@ -315,7 +315,7 @@ protected function prepareRequest($path, $page = 0, $limit = 0, array $headers =
315315
*
316316
* @return $this
317317
*
318-
* @since __DEPLOY_VERSION__
318+
* @since 3.0.0
319319
*/
320320
public function setOption($key, $value)
321321
{

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class PullModel extends \JModelDatabase
5353
*
5454
* @return array
5555
*
56-
* @since __DEPLOY_VERSION__
56+
* @since 3.0.0
5757
*/
5858
protected function parseFileList($files)
5959
{
@@ -356,7 +356,7 @@ public function revert($id)
356356
*
357357
* @return boolean
358358
*
359-
* @since __DEPLOY_VERSION__
359+
* @since 3.0.0
360360
*/
361361
private function removeTest($testRecord)
362362
{

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>11-May-2016</creationDate>
5+
<creationDate>25-June-2016</creationDate>
66
<copyright>(C) 2011 - 2012 Ian MacLennan, (C) 2013 - 2016 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-dev</version>
10+
<version>3.0.0-alpha</version>
1111
<description>COM_PATCHTESTER_XML_DESCRIPTION</description>
1212
<scriptfile>script.php</scriptfile>
1313
<install>

administrator/components/com_patchtester/script.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class Com_PatchtesterInstallerScript extends JInstallerScript
2424
/**
2525
* Extension script constructor.
2626
*
27-
* @since __DEPLOY_VERSION__
27+
* @since 3.0.0
2828
*/
2929
public function __construct()
3030
{
@@ -113,7 +113,7 @@ public function uninstall($parent)
113113
*
114114
* @return void
115115
*
116-
* @since __DEPLOY_VERSION__
116+
* @since 3.0.0
117117
*/
118118
public function postflight($type, $parent)
119119
{

0 commit comments

Comments
 (0)