From f8a2343d3147f595d43e735b89b11c277520f141 Mon Sep 17 00:00:00 2001 From: Don Gilbert Date: Sat, 8 Feb 2014 10:43:22 -0800 Subject: [PATCH] Tagging 1.1.0 --- .../Cli/Output/Processor/ColorProcessor.php | 2 +- .../Cli/Output/Processor/ProcessorInterface.php | 4 ++-- src/Joomla/Database/Sqlite/SqliteQuery.php | 4 ++-- src/Joomla/Github/Package/Repositories/Releases.php | 10 +++++----- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Joomla/Application/Cli/Output/Processor/ColorProcessor.php b/src/Joomla/Application/Cli/Output/Processor/ColorProcessor.php index 46972c9e2..fb5047481 100644 --- a/src/Joomla/Application/Cli/Output/Processor/ColorProcessor.php +++ b/src/Joomla/Application/Cli/Output/Processor/ColorProcessor.php @@ -53,7 +53,7 @@ class ColorProcessor implements ProcessorInterface /** * Class constructor * - * @since __DEPLOY_VERSION__ + * @since 1.1.0 */ public function __construct() { diff --git a/src/Joomla/Application/Cli/Output/Processor/ProcessorInterface.php b/src/Joomla/Application/Cli/Output/Processor/ProcessorInterface.php index 05b446c8c..5c0f5dd5d 100644 --- a/src/Joomla/Application/Cli/Output/Processor/ProcessorInterface.php +++ b/src/Joomla/Application/Cli/Output/Processor/ProcessorInterface.php @@ -11,7 +11,7 @@ /** * Class ProcessorInterface. * - * @since __DEPLOY_VERSION__ + * @since 1.1.0 */ interface ProcessorInterface { @@ -22,7 +22,7 @@ interface ProcessorInterface * * @return string * - * @since __DEPLOY_VERSION__ + * @since 1.1.0 */ public function process($output); } diff --git a/src/Joomla/Database/Sqlite/SqliteQuery.php b/src/Joomla/Database/Sqlite/SqliteQuery.php index 4457618ef..095a8feeb 100644 --- a/src/Joomla/Database/Sqlite/SqliteQuery.php +++ b/src/Joomla/Database/Sqlite/SqliteQuery.php @@ -132,7 +132,7 @@ public function &getBounded($key = null) * * @return string The required char length call. * - * @since __DEPLOY_VERSION__ + * @since 1.1.0 */ public function charLength($field, $operator = null, $condition = null) { @@ -171,7 +171,7 @@ public function clear($clause = null) * * @return string The concatenated values. * - * @since __DEPLOY_VERSION__ + * @since 1.1.0 */ public function concatenate($values, $separator = null) { diff --git a/src/Joomla/Github/Package/Repositories/Releases.php b/src/Joomla/Github/Package/Repositories/Releases.php index 0f283c4ad..1bc7c3cdc 100644 --- a/src/Joomla/Github/Package/Repositories/Releases.php +++ b/src/Joomla/Github/Package/Repositories/Releases.php @@ -15,7 +15,7 @@ * * @documentation http://developer.github.com/v3/repos/releases * - * @since __DEPLOY_VERSION__ + * @since 1.1.0 */ class Releases extends AbstractPackage { @@ -37,7 +37,7 @@ class Releases extends AbstractPackage * @return object * * @link http://developer.github.com/v3/repos/releases/#create-a-release - * @since __DEPLOY_VERSION__ + * @since 1.1.0 */ public function create($user, $repo, $tagName, $targetCommitish = '', $name = '', $body = '', $draft = false, $preRelease = false) { @@ -79,7 +79,7 @@ public function create($user, $repo, $tagName, $targetCommitish = '', $name = '' * @return object * * @link http://developer.github.com/v3/repos/releases/#edit-a-release - * @since __DEPLOY_VERSION__ + * @since 1.1.0 * @throws \DomainException */ public function edit($user, $repo, $releaseId, $tagName, @@ -134,7 +134,7 @@ public function edit($user, $repo, $releaseId, $tagName, * * @return object * - * @since __DEPLOY_VERSION__ + * @since 1.1.0 * @throws \DomainException */ public function get($user, $repo, $ref) @@ -156,7 +156,7 @@ public function get($user, $repo, $ref) * * @return array An associative array of releases keyed by the tag name. * - * @since __DEPLOY_VERSION__ + * @since 1.1.0 * @throws \DomainException */ public function getList($user, $repo, $page = 0, $limit = 0)