From a50e9ea71cbf90464a453fad3a0109e50c6e95b0 Mon Sep 17 00:00:00 2001 From: nowenl Date: Mon, 9 May 2016 10:09:28 +0800 Subject: [PATCH 1/2] Apply fix azure-sdk-for-php v0.4.2 --- src/Blob/BlobRestProxy.php | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/Blob/BlobRestProxy.php b/src/Blob/BlobRestProxy.php index 6398c2935..823a051bd 100644 --- a/src/Blob/BlobRestProxy.php +++ b/src/Blob/BlobRestProxy.php @@ -195,6 +195,10 @@ private function _getBlobUrl($container, $blob) $encodedBlob = $container . '/' . $encodedBlob; } + if (substr($encodedBlob, 0, 1) != '/' && substr($this->getUri(), -1, 1) != '/') + { + $encodedBlob = '/' . $encodedBlob; + } return $this->getUri() . $encodedBlob; } @@ -1352,11 +1356,13 @@ public function createBlockBlob($container, $blob, $content, $options = null) $content = substr_replace($content, '', 0, $blockSize); } } - $block = new Block(); - $block->setBlockId(base64_encode(str_pad($counter++, 6, '0', STR_PAD_LEFT))); - $block->setType('Uncommitted'); - array_push($blockIds, $block); - $this->createBlobBlock($container, $blob, $block->getBlockId(), $body); + if (!empty($body)) { + $block = new Block(); + $block->setBlockId(base64_encode(str_pad($counter++, 6, '0', STR_PAD_LEFT))); + $block->setType('Uncommitted'); + array_push($blockIds, $block); + $this->createBlobBlock($container, $blob, $block->getBlockId(), $body); + } } $response = $this->commitBlobBlocks($container, $blob, $blockIds, $options); } From ce2806a720d67bead50e967cf5dcfc14e3ffa629 Mon Sep 17 00:00:00 2001 From: nowenl Date: Thu, 12 May 2016 13:08:36 +0800 Subject: [PATCH 2/2] Update changelog.md & version number --- ChangeLog.md | 5 +++++ README.md | 2 +- src/Blob/BlobRestProxy.php | 2 +- src/Blob/Internal/IBlob.php | 2 +- src/Blob/Models/AccessCondition.php | 2 +- src/Blob/Models/AccessPolicy.php | 2 +- src/Blob/Models/AcquireLeaseOptions.php | 2 +- src/Blob/Models/AcquireLeaseResult.php | 2 +- src/Blob/Models/Blob.php | 2 +- src/Blob/Models/BlobBlockType.php | 2 +- src/Blob/Models/BlobPrefix.php | 2 +- src/Blob/Models/BlobProperties.php | 2 +- src/Blob/Models/BlobServiceOptions.php | 2 +- src/Blob/Models/BlobType.php | 2 +- src/Blob/Models/Block.php | 2 +- src/Blob/Models/BlockList.php | 2 +- src/Blob/Models/BreakLeaseResult.php | 2 +- src/Blob/Models/CommitBlobBlocksOptions.php | 2 +- src/Blob/Models/Container.php | 2 +- src/Blob/Models/ContainerACL.php | 2 +- src/Blob/Models/ContainerProperties.php | 2 +- src/Blob/Models/CopyBlobOptions.php | 2 +- src/Blob/Models/CopyBlobResult.php | 2 +- src/Blob/Models/CreateBlobBlockOptions.php | 2 +- src/Blob/Models/CreateBlobOptions.php | 2 +- src/Blob/Models/CreateBlobPagesOptions.php | 2 +- src/Blob/Models/CreateBlobPagesResult.php | 2 +- src/Blob/Models/CreateBlobSnapshotOptions.php | 2 +- src/Blob/Models/CreateBlobSnapshotResult.php | 2 +- src/Blob/Models/CreateContainerOptions.php | 2 +- src/Blob/Models/DeleteBlobOptions.php | 2 +- src/Blob/Models/DeleteContainerOptions.php | 2 +- src/Blob/Models/GetBlobMetadataOptions.php | 2 +- src/Blob/Models/GetBlobMetadataResult.php | 2 +- src/Blob/Models/GetBlobOptions.php | 2 +- src/Blob/Models/GetBlobPropertiesOptions.php | 2 +- src/Blob/Models/GetBlobPropertiesResult.php | 2 +- src/Blob/Models/GetBlobResult.php | 2 +- src/Blob/Models/GetContainerACLResult.php | 2 +- src/Blob/Models/GetContainerPropertiesResult.php | 2 +- src/Blob/Models/LeaseMode.php | 2 +- src/Blob/Models/ListBlobBlocksOptions.php | 2 +- src/Blob/Models/ListBlobBlocksResult.php | 2 +- src/Blob/Models/ListBlobsOptions.php | 2 +- src/Blob/Models/ListBlobsResult.php | 2 +- src/Blob/Models/ListContainersOptions.php | 2 +- src/Blob/Models/ListContainersResult.php | 2 +- src/Blob/Models/ListPageBlobRangesOptions.php | 2 +- src/Blob/Models/ListPageBlobRangesResult.php | 2 +- src/Blob/Models/PageRange.php | 2 +- src/Blob/Models/PageWriteOption.php | 2 +- src/Blob/Models/PublicAccessType.php | 2 +- src/Blob/Models/SetBlobMetadataOptions.php | 2 +- src/Blob/Models/SetBlobMetadataResult.php | 2 +- src/Blob/Models/SetBlobPropertiesOptions.php | 2 +- src/Blob/Models/SetBlobPropertiesResult.php | 2 +- src/Blob/Models/SetContainerMetadataOptions.php | 2 +- src/Blob/Models/SignedIdentifier.php | 2 +- src/Common/CloudConfigurationManager.php | 2 +- src/Common/Internal/Authentication/IAuthScheme.php | 2 +- src/Common/Internal/Authentication/SharedKeyAuthScheme.php | 2 +- src/Common/Internal/Authentication/StorageAuthScheme.php | 2 +- .../Internal/Authentication/TableSharedKeyLiteAuthScheme.php | 2 +- src/Common/Internal/ConnectionStringParser.php | 4 ++-- src/Common/Internal/ConnectionStringSource.php | 2 +- src/Common/Internal/FilterableService.php | 2 +- src/Common/Internal/Filters/AuthenticationFilter.php | 2 +- src/Common/Internal/Filters/DateFilter.php | 2 +- src/Common/Internal/Filters/ExponentialRetryPolicy.php | 2 +- src/Common/Internal/Filters/HeadersFilter.php | 2 +- src/Common/Internal/Filters/RetryPolicy.php | 2 +- src/Common/Internal/Filters/RetryPolicyFilter.php | 2 +- src/Common/Internal/Http/HttpCallContext.php | 2 +- src/Common/Internal/IServiceFilter.php | 2 +- src/Common/Internal/InvalidArgumentTypeException.php | 2 +- src/Common/Internal/Logger.php | 2 +- src/Common/Internal/Resources.php | 2 +- src/Common/Internal/RestProxy.php | 2 +- src/Common/Internal/Serialization/ISerializer.php | 2 +- src/Common/Internal/Serialization/JsonSerializer.php | 2 +- src/Common/Internal/Serialization/XmlSerializer.php | 2 +- src/Common/Internal/ServiceRestProxy.php | 2 +- src/Common/Internal/ServiceSettings.php | 2 +- src/Common/Internal/StorageServiceSettings.php | 2 +- src/Common/Internal/Utilities.php | 2 +- src/Common/Internal/Validate.php | 2 +- src/Common/Models/GetServicePropertiesResult.php | 2 +- src/Common/Models/Logging.php | 2 +- src/Common/Models/Metrics.php | 2 +- src/Common/Models/RetentionPolicy.php | 2 +- src/Common/Models/ServiceProperties.php | 2 +- src/Common/ServiceException.php | 2 +- src/Common/ServicesBuilder.php | 2 +- src/Queue/Internal/IQueue.php | 2 +- src/Queue/Models/CreateMessageOptions.php | 2 +- src/Queue/Models/CreateQueueOptions.php | 2 +- src/Queue/Models/GetQueueMetadataResult.php | 2 +- src/Queue/Models/ListMessagesOptions.php | 2 +- src/Queue/Models/ListMessagesResult.php | 2 +- src/Queue/Models/ListQueuesOptions.php | 2 +- src/Queue/Models/ListQueuesResult.php | 2 +- src/Queue/Models/MicrosoftAzureQueueMessage.php | 2 +- src/Queue/Models/PeekMessagesOptions.php | 2 +- src/Queue/Models/PeekMessagesResult.php | 2 +- src/Queue/Models/Queue.php | 2 +- src/Queue/Models/QueueMessage.php | 2 +- src/Queue/Models/QueueServiceOptions.php | 2 +- src/Queue/Models/UpdateMessageResult.php | 2 +- src/Queue/QueueRestProxy.php | 2 +- src/Table/Internal/AtomReaderWriter.php | 2 +- src/Table/Internal/IAtomReaderWriter.php | 2 +- src/Table/Internal/IMimeReaderWriter.php | 2 +- src/Table/Internal/ITable.php | 2 +- src/Table/Internal/MimeReaderWriter.php | 2 +- src/Table/Models/BatchError.php | 2 +- src/Table/Models/BatchOperation.php | 2 +- src/Table/Models/BatchOperationParameterName.php | 2 +- src/Table/Models/BatchOperationType.php | 2 +- src/Table/Models/BatchOperations.php | 2 +- src/Table/Models/BatchResult.php | 2 +- src/Table/Models/DeleteEntityOptions.php | 2 +- src/Table/Models/EdmType.php | 2 +- src/Table/Models/Entity.php | 2 +- src/Table/Models/Filters/BinaryFilter.php | 2 +- src/Table/Models/Filters/ConstantFilter.php | 2 +- src/Table/Models/Filters/Filter.php | 2 +- src/Table/Models/Filters/PropertyNameFilter.php | 2 +- src/Table/Models/Filters/QueryStringFilter.php | 2 +- src/Table/Models/Filters/UnaryFilter.php | 2 +- src/Table/Models/GetEntityResult.php | 2 +- src/Table/Models/GetTableResult.php | 2 +- src/Table/Models/InsertEntityResult.php | 2 +- src/Table/Models/Property.php | 2 +- src/Table/Models/Query.php | 2 +- src/Table/Models/QueryEntitiesOptions.php | 2 +- src/Table/Models/QueryEntitiesResult.php | 2 +- src/Table/Models/QueryTablesOptions.php | 2 +- src/Table/Models/QueryTablesResult.php | 2 +- src/Table/Models/TableServiceOptions.php | 2 +- src/Table/Models/UpdateEntityResult.php | 2 +- src/Table/TableRestProxy.php | 2 +- tests/framework/BlobServiceRestProxyTestBase.php | 2 +- tests/framework/QueueServiceRestProxyTestBase.php | 2 +- tests/framework/RestProxyTestBase.php | 2 +- tests/framework/ServiceRestProxyTestBase.php | 2 +- tests/framework/TableServiceRestProxyTestBase.php | 2 +- tests/framework/TestResources.php | 2 +- tests/framework/VirtualFileSystem.php | 2 +- .../mock/Common/Internal/Authentication/OAuthSchemeMock.php | 2 +- .../Internal/Authentication/SharedKeyAuthSchemeMock.php | 2 +- .../Common/Internal/Authentication/StorageAuthSchemeMock.php | 2 +- .../Authentication/TableSharedKeyLiteAuthSchemeMock.php | 2 +- tests/mock/Common/Internal/Filters/SimpleFilterMock.php | 2 +- tests/unit/Blob/BlobRestProxyTest.php | 2 +- tests/unit/Blob/Models/AccessConditionTest.php | 2 +- tests/unit/Blob/Models/AccessPolicyTest.php | 2 +- tests/unit/Blob/Models/AcquireLeaseOptionsTest.php | 2 +- tests/unit/Blob/Models/AcquireLeaseResultTest.php | 2 +- tests/unit/Blob/Models/BlobBlockTypeTest.php | 2 +- tests/unit/Blob/Models/BlobPrefixTest.php | 2 +- tests/unit/Blob/Models/BlobPropertiesTest.php | 2 +- tests/unit/Blob/Models/BlobServiceOptionsTest.php | 2 +- tests/unit/Blob/Models/BlobTest.php | 2 +- tests/unit/Blob/Models/BlobTypeTest.php | 2 +- tests/unit/Blob/Models/BlockListTest.php | 2 +- tests/unit/Blob/Models/BlockTest.php | 2 +- tests/unit/Blob/Models/BreakLeaseResultTest.php | 2 +- tests/unit/Blob/Models/CommitBlobBlocksOptionsTest.php | 2 +- tests/unit/Blob/Models/ContainerACLTest.php | 2 +- tests/unit/Blob/Models/ContainerPropertiesTest.php | 2 +- tests/unit/Blob/Models/ContainerTest.php | 2 +- tests/unit/Blob/Models/CopyBlobOptionsTest.php | 2 +- tests/unit/Blob/Models/CopyBlobResultTest.php | 2 +- tests/unit/Blob/Models/CreateBlobBlockOptionsTest.php | 2 +- tests/unit/Blob/Models/CreateBlobOptionsTest.php | 2 +- tests/unit/Blob/Models/CreateBlobPagesOptionsTest.php | 2 +- tests/unit/Blob/Models/CreateBlobPagesResultTest.php | 2 +- tests/unit/Blob/Models/CreateBlobSnapshotOptionsTest.php | 2 +- tests/unit/Blob/Models/CreateBlobSnapshotResultTest.php | 2 +- tests/unit/Blob/Models/CreateContainerOptionsTest.php | 2 +- tests/unit/Blob/Models/DeleteBlobOptionsTest.php | 2 +- tests/unit/Blob/Models/DeleteContainerOptionsTest.php | 2 +- tests/unit/Blob/Models/GetBlobMetadataOptionsTest.php | 2 +- tests/unit/Blob/Models/GetBlobMetadataResultTest.php | 2 +- tests/unit/Blob/Models/GetBlobOptionsTest.php | 2 +- tests/unit/Blob/Models/GetBlobPropertiesOptionsTest.php | 2 +- tests/unit/Blob/Models/GetBlobPropertiesResultTest.php | 2 +- tests/unit/Blob/Models/GetBlobResultTest.php | 2 +- tests/unit/Blob/Models/GetContainerACLResultTest.php | 2 +- tests/unit/Blob/Models/GetContainerPropertiesResultTest.php | 2 +- tests/unit/Blob/Models/LeaseModeTest.php | 2 +- tests/unit/Blob/Models/ListBlobBlocksOptionsTest.php | 2 +- tests/unit/Blob/Models/ListBlobBlocksResultTest.php | 2 +- tests/unit/Blob/Models/ListBlobsOptionsTest.php | 2 +- tests/unit/Blob/Models/ListBlobsResultTest.php | 2 +- tests/unit/Blob/Models/ListContainersOptionsTest.php | 2 +- tests/unit/Blob/Models/ListContainersResultTest.php | 2 +- tests/unit/Blob/Models/ListPageBlobRangesOptionsTest.php | 2 +- tests/unit/Blob/Models/ListPageBlobRangesResultTest.php | 2 +- tests/unit/Blob/Models/PageRangeTest.php | 2 +- tests/unit/Blob/Models/PublicAccessTypeTest.php | 2 +- tests/unit/Blob/Models/SetBlobMetadataOptionsTest.php | 2 +- tests/unit/Blob/Models/SetBlobMetadataResultTest.php | 2 +- tests/unit/Blob/Models/SetBlobPropertiesOptionsTest.php | 2 +- tests/unit/Blob/Models/SetBlobPropertiesResultTest.php | 2 +- tests/unit/Blob/Models/SetContainerMetadataOptionsTest.php | 2 +- tests/unit/Blob/Models/SignedIdentifierTest.php | 2 +- tests/unit/Common/CloudConfigurationManagerTest.php | 2 +- .../Internal/Authentication/SharedKeyAuthSchemeTest.php | 2 +- .../Common/Internal/Authentication/StorageAuthSchemeTest.php | 2 +- .../Authentication/TableSharedKeyLiteAuthSchemeTest.php | 2 +- tests/unit/Common/Internal/ConnectionStringParserTest.php | 2 +- tests/unit/Common/Internal/ConnectionStringSourceTest.php | 2 +- .../Common/Internal/Filters/AuthenticationFilterTest.php | 2 +- tests/unit/Common/Internal/Filters/DateFilterTest.php | 2 +- .../Common/Internal/Filters/ExponentialRetryPolicyTest.php | 2 +- tests/unit/Common/Internal/Filters/HeadersFilterTest.php | 2 +- tests/unit/Common/Internal/Http/HttpCallContextTest.php | 2 +- .../Common/Internal/InvalidArgumentTypeExceptionTest.php | 2 +- tests/unit/Common/Internal/LoggerTest.php | 2 +- tests/unit/Common/Internal/Serialization/DummyClass.php | 2 +- .../Common/Internal/Serialization/JsonSerializerTest.php | 2 +- .../unit/Common/Internal/Serialization/XmlSerializerTest.php | 2 +- tests/unit/Common/Internal/ServiceRestProxyTest.php | 2 +- tests/unit/Common/Internal/StorageServiceSettingsTest.php | 2 +- tests/unit/Common/Internal/UtilitiesTest.php | 2 +- tests/unit/Common/Internal/ValidateTest.php | 2 +- tests/unit/Common/Models/GetServicePropertiesResultTest.php | 2 +- tests/unit/Common/Models/LoggingTest.php | 2 +- tests/unit/Common/Models/MetricsTest.php | 2 +- tests/unit/Common/Models/RetentionPolicyTest.php | 2 +- tests/unit/Common/Models/ServicePropertiesTest.php | 2 +- tests/unit/Common/ServiceExceptionTest.php | 2 +- tests/unit/Common/ServicesBuilderTest.php | 2 +- tests/unit/Queue/Models/CreateMessageOptionsTest.php | 2 +- tests/unit/Queue/Models/CreateQueueOptionsTest.php | 2 +- tests/unit/Queue/Models/GetQueueMetadataResultTest.php | 2 +- tests/unit/Queue/Models/ListMessagesOptionsTest.php | 2 +- tests/unit/Queue/Models/ListMessagesResultTest.php | 2 +- tests/unit/Queue/Models/ListQueuesOptionsTest.php | 2 +- tests/unit/Queue/Models/ListQueuesResultTest.php | 2 +- tests/unit/Queue/Models/MicrosoftAzureQueueMessageTest.php | 2 +- tests/unit/Queue/Models/PeekMessagesOptionsTest.php | 2 +- tests/unit/Queue/Models/PeekMessagesResultTest.php | 2 +- tests/unit/Queue/Models/QueueMessageTest.php | 2 +- tests/unit/Queue/Models/QueueServiceOptionsTest.php | 2 +- tests/unit/Queue/Models/QueueTest.php | 2 +- tests/unit/Queue/Models/UpdateMessageResultTest.php | 2 +- tests/unit/Queue/QueueRestProxyTest.php | 2 +- tests/unit/Table/Internal/AtomReaderWriterTest.php | 2 +- tests/unit/Table/Models/BatchErrorTest.php | 2 +- tests/unit/Table/Models/BatchOperationParameterNameTest.php | 2 +- tests/unit/Table/Models/BatchOperationTest.php | 2 +- tests/unit/Table/Models/BatchOperationTypeTest.php | 2 +- tests/unit/Table/Models/BatchOperationsTest.php | 2 +- tests/unit/Table/Models/BatchResultTest.php | 2 +- tests/unit/Table/Models/DeleteEntityOptionsTest.php | 2 +- tests/unit/Table/Models/EdmTypeTest.php | 2 +- tests/unit/Table/Models/EntityTest.php | 2 +- tests/unit/Table/Models/Filters/BinaryFilterTest.php | 2 +- tests/unit/Table/Models/Filters/ConstantFilterTest.php | 2 +- tests/unit/Table/Models/Filters/FilterTest.php | 2 +- tests/unit/Table/Models/Filters/PropertyNameFilterTest.php | 2 +- tests/unit/Table/Models/Filters/QueryStringFilterTest.php | 2 +- tests/unit/Table/Models/Filters/UnaryFilterTest.php | 2 +- tests/unit/Table/Models/GetEntityResultTest.php | 2 +- tests/unit/Table/Models/GetTableResultTest.php | 2 +- tests/unit/Table/Models/InsertEntityResultTest.php | 2 +- tests/unit/Table/Models/PropertyTest.php | 2 +- tests/unit/Table/Models/QueryEntitiesOptionsTest.php | 2 +- tests/unit/Table/Models/QueryEntitiesResultTest.php | 2 +- tests/unit/Table/Models/QueryTablesOptionsTest.php | 2 +- tests/unit/Table/Models/QueryTablesResultTest.php | 2 +- tests/unit/Table/Models/QueryTest.php | 2 +- tests/unit/Table/Models/TableServiceOptionsTest.php | 2 +- tests/unit/Table/Models/UpdateEntityResultTest.php | 2 +- tests/unit/Table/TableRestProxyTest.php | 2 +- 277 files changed, 282 insertions(+), 277 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index bb2b290d4..aedf502a7 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,8 @@ +2016.05 - version 0.10.1 +Blob +* Fixed the issue that blobs upload with size multiple of 4194304 bytes and larger than 33554432 bytes. +* Fixed the issue that extra / is appended in blob URL. + 2016.04 - version 0.10.0 ALL * Separated Azure Storage APIs in Azure-SDK-for-PHP to establish an independent release cycle. diff --git a/README.md b/README.md index 61fa8db17..61ef99094 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ You can find samples in the [sample folder](samples) If you are using [Azure SDK for PHP](https://github.com/Azure/azure-sdk-for-php/) to access Azure Storage Service, we highly recommend you to migrate to this SDK for faster issue resolution and quicker feature implementation. We are working on supporting the latest service features (including SAS, CORS, append blob, file service, etc) as well as improvement on existing APIs. -For now, Microsoft Azure Storage SDK for PHP v0.10.0 shares almost the same interface as the storage blobs, tables and queues APIs in Azure SDK for PHP v0.4.1. However, there are some minor breaking changes need to be addressed during your migration. You can find the details in [BreakingChanges.md](BreakingChanges.md). +For now, Microsoft Azure Storage SDK for PHP v0.10.1 shares almost the same interface as the storage blobs, tables and queues APIs in Azure SDK for PHP v0.4.3. However, there are some minor breaking changes need to be addressed during your migration. You can find the details in [BreakingChanges.md](BreakingChanges.md). Please note that this library is still in preview and may contain more breaking changes in upcoming releases. diff --git a/src/Blob/BlobRestProxy.php b/src/Blob/BlobRestProxy.php index 823a051bd..d91e0db5e 100644 --- a/src/Blob/BlobRestProxy.php +++ b/src/Blob/BlobRestProxy.php @@ -85,7 +85,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BlobRestProxy extends ServiceRestProxy implements IBlob diff --git a/src/Blob/Internal/IBlob.php b/src/Blob/Internal/IBlob.php index 0dc377ce4..cfac8d45f 100644 --- a/src/Blob/Internal/IBlob.php +++ b/src/Blob/Internal/IBlob.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php * @see http://msdn.microsoft.com/en-us/library/windowsazure/dd135733.aspx */ diff --git a/src/Blob/Models/AccessCondition.php b/src/Blob/Models/AccessCondition.php index 01df4eab9..40d183b16 100644 --- a/src/Blob/Models/AccessCondition.php +++ b/src/Blob/Models/AccessCondition.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class AccessCondition diff --git a/src/Blob/Models/AccessPolicy.php b/src/Blob/Models/AccessPolicy.php index c86b8b434..3aa1c93b5 100644 --- a/src/Blob/Models/AccessPolicy.php +++ b/src/Blob/Models/AccessPolicy.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class AccessPolicy diff --git a/src/Blob/Models/AcquireLeaseOptions.php b/src/Blob/Models/AcquireLeaseOptions.php index ad57dc0df..b830b7ebc 100644 --- a/src/Blob/Models/AcquireLeaseOptions.php +++ b/src/Blob/Models/AcquireLeaseOptions.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class AcquireLeaseOptions extends BlobServiceOptions diff --git a/src/Blob/Models/AcquireLeaseResult.php b/src/Blob/Models/AcquireLeaseResult.php index f4aded239..7717c3635 100644 --- a/src/Blob/Models/AcquireLeaseResult.php +++ b/src/Blob/Models/AcquireLeaseResult.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class AcquireLeaseResult diff --git a/src/Blob/Models/Blob.php b/src/Blob/Models/Blob.php index 121e5bab2..b039d9d2d 100644 --- a/src/Blob/Models/Blob.php +++ b/src/Blob/Models/Blob.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class Blob diff --git a/src/Blob/Models/BlobBlockType.php b/src/Blob/Models/BlobBlockType.php index 635c94318..d601586c7 100644 --- a/src/Blob/Models/BlobBlockType.php +++ b/src/Blob/Models/BlobBlockType.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BlobBlockType diff --git a/src/Blob/Models/BlobPrefix.php b/src/Blob/Models/BlobPrefix.php index 4afd5d16c..26d520e93 100644 --- a/src/Blob/Models/BlobPrefix.php +++ b/src/Blob/Models/BlobPrefix.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BlobPrefix diff --git a/src/Blob/Models/BlobProperties.php b/src/Blob/Models/BlobProperties.php index 0bbbb7d9e..9b3360a06 100644 --- a/src/Blob/Models/BlobProperties.php +++ b/src/Blob/Models/BlobProperties.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BlobProperties diff --git a/src/Blob/Models/BlobServiceOptions.php b/src/Blob/Models/BlobServiceOptions.php index 25be62d85..f54907ae7 100644 --- a/src/Blob/Models/BlobServiceOptions.php +++ b/src/Blob/Models/BlobServiceOptions.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BlobServiceOptions diff --git a/src/Blob/Models/BlobType.php b/src/Blob/Models/BlobType.php index 1fb067395..f82989330 100644 --- a/src/Blob/Models/BlobType.php +++ b/src/Blob/Models/BlobType.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BlobType diff --git a/src/Blob/Models/Block.php b/src/Blob/Models/Block.php index c497ad597..acdb359a7 100644 --- a/src/Blob/Models/Block.php +++ b/src/Blob/Models/Block.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class Block diff --git a/src/Blob/Models/BlockList.php b/src/Blob/Models/BlockList.php index a5d63b47f..19b40d68d 100644 --- a/src/Blob/Models/BlockList.php +++ b/src/Blob/Models/BlockList.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BlockList diff --git a/src/Blob/Models/BreakLeaseResult.php b/src/Blob/Models/BreakLeaseResult.php index a98f502df..cf1dcf50e 100644 --- a/src/Blob/Models/BreakLeaseResult.php +++ b/src/Blob/Models/BreakLeaseResult.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BreakLeaseResult diff --git a/src/Blob/Models/CommitBlobBlocksOptions.php b/src/Blob/Models/CommitBlobBlocksOptions.php index 309a0beee..55a5771f5 100644 --- a/src/Blob/Models/CommitBlobBlocksOptions.php +++ b/src/Blob/Models/CommitBlobBlocksOptions.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CommitBlobBlocksOptions extends BlobServiceOptions diff --git a/src/Blob/Models/Container.php b/src/Blob/Models/Container.php index c9825c507..a25381795 100644 --- a/src/Blob/Models/Container.php +++ b/src/Blob/Models/Container.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class Container diff --git a/src/Blob/Models/ContainerACL.php b/src/Blob/Models/ContainerACL.php index 1abf56ccf..62c5dc018 100644 --- a/src/Blob/Models/ContainerACL.php +++ b/src/Blob/Models/ContainerACL.php @@ -39,7 +39,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ContainerAcl diff --git a/src/Blob/Models/ContainerProperties.php b/src/Blob/Models/ContainerProperties.php index 47ec70ffd..e11bdf652 100644 --- a/src/Blob/Models/ContainerProperties.php +++ b/src/Blob/Models/ContainerProperties.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ContainerProperties diff --git a/src/Blob/Models/CopyBlobOptions.php b/src/Blob/Models/CopyBlobOptions.php index 4bd76bb18..cac9faa75 100644 --- a/src/Blob/Models/CopyBlobOptions.php +++ b/src/Blob/Models/CopyBlobOptions.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CopyBlobOptions extends BlobServiceOptions diff --git a/src/Blob/Models/CopyBlobResult.php b/src/Blob/Models/CopyBlobResult.php index e314b7891..96aaeab3e 100644 --- a/src/Blob/Models/CopyBlobResult.php +++ b/src/Blob/Models/CopyBlobResult.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CopyBlobResult diff --git a/src/Blob/Models/CreateBlobBlockOptions.php b/src/Blob/Models/CreateBlobBlockOptions.php index 83ec8b00f..f907266c4 100644 --- a/src/Blob/Models/CreateBlobBlockOptions.php +++ b/src/Blob/Models/CreateBlobBlockOptions.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateBlobBlockOptions extends BlobServiceOptions diff --git a/src/Blob/Models/CreateBlobOptions.php b/src/Blob/Models/CreateBlobOptions.php index c99651401..ebc55cdf0 100644 --- a/src/Blob/Models/CreateBlobOptions.php +++ b/src/Blob/Models/CreateBlobOptions.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateBlobOptions extends BlobServiceOptions diff --git a/src/Blob/Models/CreateBlobPagesOptions.php b/src/Blob/Models/CreateBlobPagesOptions.php index 5bbb27229..54bc3431b 100644 --- a/src/Blob/Models/CreateBlobPagesOptions.php +++ b/src/Blob/Models/CreateBlobPagesOptions.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateBlobPagesOptions extends BlobServiceOptions diff --git a/src/Blob/Models/CreateBlobPagesResult.php b/src/Blob/Models/CreateBlobPagesResult.php index eee3b33df..8878c0854 100644 --- a/src/Blob/Models/CreateBlobPagesResult.php +++ b/src/Blob/Models/CreateBlobPagesResult.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateBlobPagesResult diff --git a/src/Blob/Models/CreateBlobSnapshotOptions.php b/src/Blob/Models/CreateBlobSnapshotOptions.php index 2d84a8c07..b9cad2d64 100644 --- a/src/Blob/Models/CreateBlobSnapshotOptions.php +++ b/src/Blob/Models/CreateBlobSnapshotOptions.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateBlobSnapshotOptions extends BlobServiceOptions diff --git a/src/Blob/Models/CreateBlobSnapshotResult.php b/src/Blob/Models/CreateBlobSnapshotResult.php index d9d7240ae..452d1f037 100644 --- a/src/Blob/Models/CreateBlobSnapshotResult.php +++ b/src/Blob/Models/CreateBlobSnapshotResult.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateBlobSnapshotResult diff --git a/src/Blob/Models/CreateContainerOptions.php b/src/Blob/Models/CreateContainerOptions.php index 1326b6bed..36ad25dea 100644 --- a/src/Blob/Models/CreateContainerOptions.php +++ b/src/Blob/Models/CreateContainerOptions.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateContainerOptions extends BlobServiceOptions diff --git a/src/Blob/Models/DeleteBlobOptions.php b/src/Blob/Models/DeleteBlobOptions.php index d0d269469..db8103367 100644 --- a/src/Blob/Models/DeleteBlobOptions.php +++ b/src/Blob/Models/DeleteBlobOptions.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class DeleteBlobOptions extends BlobServiceOptions diff --git a/src/Blob/Models/DeleteContainerOptions.php b/src/Blob/Models/DeleteContainerOptions.php index fa0c4b8af..27b3910b6 100644 --- a/src/Blob/Models/DeleteContainerOptions.php +++ b/src/Blob/Models/DeleteContainerOptions.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class DeleteContainerOptions extends BlobServiceOptions diff --git a/src/Blob/Models/GetBlobMetadataOptions.php b/src/Blob/Models/GetBlobMetadataOptions.php index 48de9fea9..75bb7ff23 100644 --- a/src/Blob/Models/GetBlobMetadataOptions.php +++ b/src/Blob/Models/GetBlobMetadataOptions.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetBlobMetadataOptions extends BlobServiceOptions diff --git a/src/Blob/Models/GetBlobMetadataResult.php b/src/Blob/Models/GetBlobMetadataResult.php index bbae33c48..0879c4960 100644 --- a/src/Blob/Models/GetBlobMetadataResult.php +++ b/src/Blob/Models/GetBlobMetadataResult.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetBlobMetadataResult diff --git a/src/Blob/Models/GetBlobOptions.php b/src/Blob/Models/GetBlobOptions.php index db70f8105..a070f844b 100644 --- a/src/Blob/Models/GetBlobOptions.php +++ b/src/Blob/Models/GetBlobOptions.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetBlobOptions extends BlobServiceOptions diff --git a/src/Blob/Models/GetBlobPropertiesOptions.php b/src/Blob/Models/GetBlobPropertiesOptions.php index 7e7c24d70..1a6be0e91 100644 --- a/src/Blob/Models/GetBlobPropertiesOptions.php +++ b/src/Blob/Models/GetBlobPropertiesOptions.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetBlobPropertiesOptions extends BlobServiceOptions diff --git a/src/Blob/Models/GetBlobPropertiesResult.php b/src/Blob/Models/GetBlobPropertiesResult.php index 273c7c1a2..048914f4c 100644 --- a/src/Blob/Models/GetBlobPropertiesResult.php +++ b/src/Blob/Models/GetBlobPropertiesResult.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetBlobPropertiesResult diff --git a/src/Blob/Models/GetBlobResult.php b/src/Blob/Models/GetBlobResult.php index 66f38790e..e2ba2e7a9 100644 --- a/src/Blob/Models/GetBlobResult.php +++ b/src/Blob/Models/GetBlobResult.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetBlobResult diff --git a/src/Blob/Models/GetContainerACLResult.php b/src/Blob/Models/GetContainerACLResult.php index 424424b17..e4fd4e78f 100644 --- a/src/Blob/Models/GetContainerACLResult.php +++ b/src/Blob/Models/GetContainerACLResult.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetContainerAclResult diff --git a/src/Blob/Models/GetContainerPropertiesResult.php b/src/Blob/Models/GetContainerPropertiesResult.php index b918d76f1..7ac1d604a 100644 --- a/src/Blob/Models/GetContainerPropertiesResult.php +++ b/src/Blob/Models/GetContainerPropertiesResult.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetContainerPropertiesResult diff --git a/src/Blob/Models/LeaseMode.php b/src/Blob/Models/LeaseMode.php index 9ac45e5fc..2668c3918 100644 --- a/src/Blob/Models/LeaseMode.php +++ b/src/Blob/Models/LeaseMode.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class LeaseMode diff --git a/src/Blob/Models/ListBlobBlocksOptions.php b/src/Blob/Models/ListBlobBlocksOptions.php index 9ffa8cc1c..a61988fd9 100644 --- a/src/Blob/Models/ListBlobBlocksOptions.php +++ b/src/Blob/Models/ListBlobBlocksOptions.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListBlobBlocksOptions extends BlobServiceOptions diff --git a/src/Blob/Models/ListBlobBlocksResult.php b/src/Blob/Models/ListBlobBlocksResult.php index 0aa2092f9..9ed31659f 100644 --- a/src/Blob/Models/ListBlobBlocksResult.php +++ b/src/Blob/Models/ListBlobBlocksResult.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListBlobBlocksResult diff --git a/src/Blob/Models/ListBlobsOptions.php b/src/Blob/Models/ListBlobsOptions.php index 66a22fa1c..d3cf204d1 100644 --- a/src/Blob/Models/ListBlobsOptions.php +++ b/src/Blob/Models/ListBlobsOptions.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListBlobsOptions extends BlobServiceOptions diff --git a/src/Blob/Models/ListBlobsResult.php b/src/Blob/Models/ListBlobsResult.php index 01c7a5b31..0237f3984 100644 --- a/src/Blob/Models/ListBlobsResult.php +++ b/src/Blob/Models/ListBlobsResult.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListBlobsResult diff --git a/src/Blob/Models/ListContainersOptions.php b/src/Blob/Models/ListContainersOptions.php index 4e017a794..4a21af26c 100644 --- a/src/Blob/Models/ListContainersOptions.php +++ b/src/Blob/Models/ListContainersOptions.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListContainersOptions extends BlobServiceOptions diff --git a/src/Blob/Models/ListContainersResult.php b/src/Blob/Models/ListContainersResult.php index 1b1eea2be..a076053a9 100644 --- a/src/Blob/Models/ListContainersResult.php +++ b/src/Blob/Models/ListContainersResult.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListContainersResult diff --git a/src/Blob/Models/ListPageBlobRangesOptions.php b/src/Blob/Models/ListPageBlobRangesOptions.php index d5e6009a8..8ec958c43 100644 --- a/src/Blob/Models/ListPageBlobRangesOptions.php +++ b/src/Blob/Models/ListPageBlobRangesOptions.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListPageBlobRangesOptions extends BlobServiceOptions diff --git a/src/Blob/Models/ListPageBlobRangesResult.php b/src/Blob/Models/ListPageBlobRangesResult.php index fadf2ec1d..41cf54b78 100644 --- a/src/Blob/Models/ListPageBlobRangesResult.php +++ b/src/Blob/Models/ListPageBlobRangesResult.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListPageBlobRangesResult diff --git a/src/Blob/Models/PageRange.php b/src/Blob/Models/PageRange.php index 0fbce0afd..6fb8f6509 100644 --- a/src/Blob/Models/PageRange.php +++ b/src/Blob/Models/PageRange.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class PageRange diff --git a/src/Blob/Models/PageWriteOption.php b/src/Blob/Models/PageWriteOption.php index 0dc3dd72f..b9abb5132 100644 --- a/src/Blob/Models/PageWriteOption.php +++ b/src/Blob/Models/PageWriteOption.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class PageWriteOption diff --git a/src/Blob/Models/PublicAccessType.php b/src/Blob/Models/PublicAccessType.php index 664d785b6..60866f73e 100644 --- a/src/Blob/Models/PublicAccessType.php +++ b/src/Blob/Models/PublicAccessType.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class PublicAccessType diff --git a/src/Blob/Models/SetBlobMetadataOptions.php b/src/Blob/Models/SetBlobMetadataOptions.php index 8737de46e..d699ca056 100644 --- a/src/Blob/Models/SetBlobMetadataOptions.php +++ b/src/Blob/Models/SetBlobMetadataOptions.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class SetBlobMetadataOptions extends BlobServiceOptions diff --git a/src/Blob/Models/SetBlobMetadataResult.php b/src/Blob/Models/SetBlobMetadataResult.php index 309461965..3c767032e 100644 --- a/src/Blob/Models/SetBlobMetadataResult.php +++ b/src/Blob/Models/SetBlobMetadataResult.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class SetBlobMetadataResult diff --git a/src/Blob/Models/SetBlobPropertiesOptions.php b/src/Blob/Models/SetBlobPropertiesOptions.php index 906b0cb02..03a6b4eaf 100644 --- a/src/Blob/Models/SetBlobPropertiesOptions.php +++ b/src/Blob/Models/SetBlobPropertiesOptions.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class SetBlobPropertiesOptions extends BlobServiceOptions diff --git a/src/Blob/Models/SetBlobPropertiesResult.php b/src/Blob/Models/SetBlobPropertiesResult.php index 76a0daa3f..3dc916398 100644 --- a/src/Blob/Models/SetBlobPropertiesResult.php +++ b/src/Blob/Models/SetBlobPropertiesResult.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class SetBlobPropertiesResult diff --git a/src/Blob/Models/SetContainerMetadataOptions.php b/src/Blob/Models/SetContainerMetadataOptions.php index a21b3768a..f3b858f4c 100644 --- a/src/Blob/Models/SetContainerMetadataOptions.php +++ b/src/Blob/Models/SetContainerMetadataOptions.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class SetContainerMetadataOptions extends BlobServiceOptions diff --git a/src/Blob/Models/SignedIdentifier.php b/src/Blob/Models/SignedIdentifier.php index f26694f40..638983c8d 100644 --- a/src/Blob/Models/SignedIdentifier.php +++ b/src/Blob/Models/SignedIdentifier.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class SignedIdentifier diff --git a/src/Common/CloudConfigurationManager.php b/src/Common/CloudConfigurationManager.php index c9b88cd33..539f573be 100644 --- a/src/Common/CloudConfigurationManager.php +++ b/src/Common/CloudConfigurationManager.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CloudConfigurationManager diff --git a/src/Common/Internal/Authentication/IAuthScheme.php b/src/Common/Internal/Authentication/IAuthScheme.php index 91743041b..0feebc369 100644 --- a/src/Common/Internal/Authentication/IAuthScheme.php +++ b/src/Common/Internal/Authentication/IAuthScheme.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ interface IAuthScheme diff --git a/src/Common/Internal/Authentication/SharedKeyAuthScheme.php b/src/Common/Internal/Authentication/SharedKeyAuthScheme.php index a46e1ec5d..4049abd99 100644 --- a/src/Common/Internal/Authentication/SharedKeyAuthScheme.php +++ b/src/Common/Internal/Authentication/SharedKeyAuthScheme.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class SharedKeyAuthScheme extends StorageAuthScheme diff --git a/src/Common/Internal/Authentication/StorageAuthScheme.php b/src/Common/Internal/Authentication/StorageAuthScheme.php index a8cc3812a..785845d61 100644 --- a/src/Common/Internal/Authentication/StorageAuthScheme.php +++ b/src/Common/Internal/Authentication/StorageAuthScheme.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ abstract class StorageAuthScheme implements IAuthScheme diff --git a/src/Common/Internal/Authentication/TableSharedKeyLiteAuthScheme.php b/src/Common/Internal/Authentication/TableSharedKeyLiteAuthScheme.php index 3585564da..4b15380aa 100644 --- a/src/Common/Internal/Authentication/TableSharedKeyLiteAuthScheme.php +++ b/src/Common/Internal/Authentication/TableSharedKeyLiteAuthScheme.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link http://github.com/windowsazure/azure-sdk-for-php */ class TableSharedKeyLiteAuthScheme extends StorageAuthScheme diff --git a/src/Common/Internal/ConnectionStringParser.php b/src/Common/Internal/ConnectionStringParser.php index 6b2a781c0..dfe65377b 100644 --- a/src/Common/Internal/ConnectionStringParser.php +++ b/src/Common/Internal/ConnectionStringParser.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ConnectionStringParser @@ -353,7 +353,7 @@ private function _skipOperator($operatorChar) * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ParserState diff --git a/src/Common/Internal/ConnectionStringSource.php b/src/Common/Internal/ConnectionStringSource.php index 78d1d09f0..22479a547 100644 --- a/src/Common/Internal/ConnectionStringSource.php +++ b/src/Common/Internal/ConnectionStringSource.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ConnectionStringSource diff --git a/src/Common/Internal/FilterableService.php b/src/Common/Internal/FilterableService.php index 337e6731c..e7bdd6497 100644 --- a/src/Common/Internal/FilterableService.php +++ b/src/Common/Internal/FilterableService.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ interface FilterableService diff --git a/src/Common/Internal/Filters/AuthenticationFilter.php b/src/Common/Internal/Filters/AuthenticationFilter.php index 81fba8de0..7f74835f3 100644 --- a/src/Common/Internal/Filters/AuthenticationFilter.php +++ b/src/Common/Internal/Filters/AuthenticationFilter.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class AuthenticationFilter implements IServiceFilter diff --git a/src/Common/Internal/Filters/DateFilter.php b/src/Common/Internal/Filters/DateFilter.php index 3e18ec948..b59e859c8 100644 --- a/src/Common/Internal/Filters/DateFilter.php +++ b/src/Common/Internal/Filters/DateFilter.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class DateFilter implements IServiceFilter diff --git a/src/Common/Internal/Filters/ExponentialRetryPolicy.php b/src/Common/Internal/Filters/ExponentialRetryPolicy.php index 46a2cfe6b..14ab8dc89 100644 --- a/src/Common/Internal/Filters/ExponentialRetryPolicy.php +++ b/src/Common/Internal/Filters/ExponentialRetryPolicy.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ExponentialRetryPolicy extends RetryPolicy diff --git a/src/Common/Internal/Filters/HeadersFilter.php b/src/Common/Internal/Filters/HeadersFilter.php index 95cc502d4..b35ca7526 100644 --- a/src/Common/Internal/Filters/HeadersFilter.php +++ b/src/Common/Internal/Filters/HeadersFilter.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class HeadersFilter implements IServiceFilter diff --git a/src/Common/Internal/Filters/RetryPolicy.php b/src/Common/Internal/Filters/RetryPolicy.php index e5686fb08..121588066 100644 --- a/src/Common/Internal/Filters/RetryPolicy.php +++ b/src/Common/Internal/Filters/RetryPolicy.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ abstract class RetryPolicy diff --git a/src/Common/Internal/Filters/RetryPolicyFilter.php b/src/Common/Internal/Filters/RetryPolicyFilter.php index e6dd65aec..f0740a6ab 100644 --- a/src/Common/Internal/Filters/RetryPolicyFilter.php +++ b/src/Common/Internal/Filters/RetryPolicyFilter.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class RetryPolicyFilter implements IServiceFilter diff --git a/src/Common/Internal/Http/HttpCallContext.php b/src/Common/Internal/Http/HttpCallContext.php index 80a0d24d9..b7eb63349 100644 --- a/src/Common/Internal/Http/HttpCallContext.php +++ b/src/Common/Internal/Http/HttpCallContext.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class HttpCallContext diff --git a/src/Common/Internal/IServiceFilter.php b/src/Common/Internal/IServiceFilter.php index 73210fb57..a024c5951 100644 --- a/src/Common/Internal/IServiceFilter.php +++ b/src/Common/Internal/IServiceFilter.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ interface IServiceFilter diff --git a/src/Common/Internal/InvalidArgumentTypeException.php b/src/Common/Internal/InvalidArgumentTypeException.php index 936e7accf..531dfe41b 100644 --- a/src/Common/Internal/InvalidArgumentTypeException.php +++ b/src/Common/Internal/InvalidArgumentTypeException.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class InvalidArgumentTypeException extends \InvalidArgumentException diff --git a/src/Common/Internal/Logger.php b/src/Common/Internal/Logger.php index c7b27877f..a2a8eebf3 100644 --- a/src/Common/Internal/Logger.php +++ b/src/Common/Internal/Logger.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class Logger diff --git a/src/Common/Internal/Resources.php b/src/Common/Internal/Resources.php index a0a40f200..1f6fda615 100644 --- a/src/Common/Internal/Resources.php +++ b/src/Common/Internal/Resources.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class Resources diff --git a/src/Common/Internal/RestProxy.php b/src/Common/Internal/RestProxy.php index 52ae4f137..c02235ee2 100644 --- a/src/Common/Internal/RestProxy.php +++ b/src/Common/Internal/RestProxy.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class RestProxy diff --git a/src/Common/Internal/Serialization/ISerializer.php b/src/Common/Internal/Serialization/ISerializer.php index f7ca802ab..1e8e8967e 100644 --- a/src/Common/Internal/Serialization/ISerializer.php +++ b/src/Common/Internal/Serialization/ISerializer.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ interface ISerializer diff --git a/src/Common/Internal/Serialization/JsonSerializer.php b/src/Common/Internal/Serialization/JsonSerializer.php index 10a245bbf..a7599be8e 100644 --- a/src/Common/Internal/Serialization/JsonSerializer.php +++ b/src/Common/Internal/Serialization/JsonSerializer.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class JsonSerializer implements ISerializer diff --git a/src/Common/Internal/Serialization/XmlSerializer.php b/src/Common/Internal/Serialization/XmlSerializer.php index 0f091be69..4572c7095 100644 --- a/src/Common/Internal/Serialization/XmlSerializer.php +++ b/src/Common/Internal/Serialization/XmlSerializer.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class XmlSerializer implements ISerializer diff --git a/src/Common/Internal/ServiceRestProxy.php b/src/Common/Internal/ServiceRestProxy.php index 63e200b31..a2edeba17 100644 --- a/src/Common/Internal/ServiceRestProxy.php +++ b/src/Common/Internal/ServiceRestProxy.php @@ -41,7 +41,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ServiceRestProxy extends RestProxy diff --git a/src/Common/Internal/ServiceSettings.php b/src/Common/Internal/ServiceSettings.php index 3ca6c8538..528098316 100644 --- a/src/Common/Internal/ServiceSettings.php +++ b/src/Common/Internal/ServiceSettings.php @@ -42,7 +42,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ abstract class ServiceSettings diff --git a/src/Common/Internal/StorageServiceSettings.php b/src/Common/Internal/StorageServiceSettings.php index 560049682..a51f24323 100644 --- a/src/Common/Internal/StorageServiceSettings.php +++ b/src/Common/Internal/StorageServiceSettings.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class StorageServiceSettings extends ServiceSettings diff --git a/src/Common/Internal/Utilities.php b/src/Common/Internal/Utilities.php index 428e1e089..db6f4d09b 100644 --- a/src/Common/Internal/Utilities.php +++ b/src/Common/Internal/Utilities.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class Utilities diff --git a/src/Common/Internal/Validate.php b/src/Common/Internal/Validate.php index f9acdc6fb..25470a2b4 100644 --- a/src/Common/Internal/Validate.php +++ b/src/Common/Internal/Validate.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class Validate diff --git a/src/Common/Models/GetServicePropertiesResult.php b/src/Common/Models/GetServicePropertiesResult.php index 02e8201c1..f59638d97 100644 --- a/src/Common/Models/GetServicePropertiesResult.php +++ b/src/Common/Models/GetServicePropertiesResult.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetServicePropertiesResult diff --git a/src/Common/Models/Logging.php b/src/Common/Models/Logging.php index a52b95872..61e72c56f 100644 --- a/src/Common/Models/Logging.php +++ b/src/Common/Models/Logging.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class Logging diff --git a/src/Common/Models/Metrics.php b/src/Common/Models/Metrics.php index d16553226..101e4b77d 100644 --- a/src/Common/Models/Metrics.php +++ b/src/Common/Models/Metrics.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class Metrics diff --git a/src/Common/Models/RetentionPolicy.php b/src/Common/Models/RetentionPolicy.php index 89c2dbb01..103fc56ec 100644 --- a/src/Common/Models/RetentionPolicy.php +++ b/src/Common/Models/RetentionPolicy.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class RetentionPolicy diff --git a/src/Common/Models/ServiceProperties.php b/src/Common/Models/ServiceProperties.php index ced0a1532..8a95eb1f7 100644 --- a/src/Common/Models/ServiceProperties.php +++ b/src/Common/Models/ServiceProperties.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ServiceProperties diff --git a/src/Common/ServiceException.php b/src/Common/ServiceException.php index 3b9e69534..8ce3ed0ca 100644 --- a/src/Common/ServiceException.php +++ b/src/Common/ServiceException.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ServiceException extends \LogicException diff --git a/src/Common/ServicesBuilder.php b/src/Common/ServicesBuilder.php index 4d05aba59..90f2f0a9b 100644 --- a/src/Common/ServicesBuilder.php +++ b/src/Common/ServicesBuilder.php @@ -49,7 +49,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ServicesBuilder diff --git a/src/Queue/Internal/IQueue.php b/src/Queue/Internal/IQueue.php index 2bd0bfe51..ac51fdc77 100644 --- a/src/Queue/Internal/IQueue.php +++ b/src/Queue/Internal/IQueue.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php * @see http://msdn.microsoft.com/en-us/library/windowsazure/dd179363.aspx */ diff --git a/src/Queue/Models/CreateMessageOptions.php b/src/Queue/Models/CreateMessageOptions.php index d8f465bdf..fbba20f98 100644 --- a/src/Queue/Models/CreateMessageOptions.php +++ b/src/Queue/Models/CreateMessageOptions.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateMessageOptions extends QueueServiceOptions diff --git a/src/Queue/Models/CreateQueueOptions.php b/src/Queue/Models/CreateQueueOptions.php index 824348eeb..4d798c2f7 100644 --- a/src/Queue/Models/CreateQueueOptions.php +++ b/src/Queue/Models/CreateQueueOptions.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateQueueOptions extends QueueServiceOptions diff --git a/src/Queue/Models/GetQueueMetadataResult.php b/src/Queue/Models/GetQueueMetadataResult.php index 823e5da49..03d97daaa 100644 --- a/src/Queue/Models/GetQueueMetadataResult.php +++ b/src/Queue/Models/GetQueueMetadataResult.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetQueueMetadataResult diff --git a/src/Queue/Models/ListMessagesOptions.php b/src/Queue/Models/ListMessagesOptions.php index 6c9005a87..f4c153b6d 100644 --- a/src/Queue/Models/ListMessagesOptions.php +++ b/src/Queue/Models/ListMessagesOptions.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListMessagesOptions extends QueueServiceOptions diff --git a/src/Queue/Models/ListMessagesResult.php b/src/Queue/Models/ListMessagesResult.php index ac610ac09..e96190fba 100644 --- a/src/Queue/Models/ListMessagesResult.php +++ b/src/Queue/Models/ListMessagesResult.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListMessagesResult diff --git a/src/Queue/Models/ListQueuesOptions.php b/src/Queue/Models/ListQueuesOptions.php index 9a2379a67..82142481e 100644 --- a/src/Queue/Models/ListQueuesOptions.php +++ b/src/Queue/Models/ListQueuesOptions.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListQueuesOptions extends QueueServiceOptions diff --git a/src/Queue/Models/ListQueuesResult.php b/src/Queue/Models/ListQueuesResult.php index cbdf40688..b20e383e7 100644 --- a/src/Queue/Models/ListQueuesResult.php +++ b/src/Queue/Models/ListQueuesResult.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListQueuesResult diff --git a/src/Queue/Models/MicrosoftAzureQueueMessage.php b/src/Queue/Models/MicrosoftAzureQueueMessage.php index 3fd229797..f2990f5e7 100644 --- a/src/Queue/Models/MicrosoftAzureQueueMessage.php +++ b/src/Queue/Models/MicrosoftAzureQueueMessage.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class MicrosoftAzureQueueMessage diff --git a/src/Queue/Models/PeekMessagesOptions.php b/src/Queue/Models/PeekMessagesOptions.php index 63f0f7f93..141da3c3f 100644 --- a/src/Queue/Models/PeekMessagesOptions.php +++ b/src/Queue/Models/PeekMessagesOptions.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class PeekMessagesOptions extends QueueServiceOptions diff --git a/src/Queue/Models/PeekMessagesResult.php b/src/Queue/Models/PeekMessagesResult.php index ef599dba1..132b4d450 100644 --- a/src/Queue/Models/PeekMessagesResult.php +++ b/src/Queue/Models/PeekMessagesResult.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class PeekMessagesResult diff --git a/src/Queue/Models/Queue.php b/src/Queue/Models/Queue.php index 36ba10c55..fe1f42f60 100644 --- a/src/Queue/Models/Queue.php +++ b/src/Queue/Models/Queue.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class Queue diff --git a/src/Queue/Models/QueueMessage.php b/src/Queue/Models/QueueMessage.php index 45ee878c7..0024fb68b 100644 --- a/src/Queue/Models/QueueMessage.php +++ b/src/Queue/Models/QueueMessage.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueueMessage diff --git a/src/Queue/Models/QueueServiceOptions.php b/src/Queue/Models/QueueServiceOptions.php index 93d968869..ce02cf4d9 100644 --- a/src/Queue/Models/QueueServiceOptions.php +++ b/src/Queue/Models/QueueServiceOptions.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueueServiceOptions diff --git a/src/Queue/Models/UpdateMessageResult.php b/src/Queue/Models/UpdateMessageResult.php index 6c45d0110..aec10b968 100644 --- a/src/Queue/Models/UpdateMessageResult.php +++ b/src/Queue/Models/UpdateMessageResult.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class UpdateMessageResult diff --git a/src/Queue/QueueRestProxy.php b/src/Queue/QueueRestProxy.php index c3aeba0a9..b792c9389 100644 --- a/src/Queue/QueueRestProxy.php +++ b/src/Queue/QueueRestProxy.php @@ -53,7 +53,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueueRestProxy extends ServiceRestProxy implements IQueue diff --git a/src/Table/Internal/AtomReaderWriter.php b/src/Table/Internal/AtomReaderWriter.php index 81e9b464b..bafdb1fc1 100644 --- a/src/Table/Internal/AtomReaderWriter.php +++ b/src/Table/Internal/AtomReaderWriter.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class AtomReaderWriter implements IAtomReaderWriter diff --git a/src/Table/Internal/IAtomReaderWriter.php b/src/Table/Internal/IAtomReaderWriter.php index d10459603..d035cf7cb 100644 --- a/src/Table/Internal/IAtomReaderWriter.php +++ b/src/Table/Internal/IAtomReaderWriter.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ interface IAtomReaderWriter diff --git a/src/Table/Internal/IMimeReaderWriter.php b/src/Table/Internal/IMimeReaderWriter.php index ecf9fc229..93440d477 100644 --- a/src/Table/Internal/IMimeReaderWriter.php +++ b/src/Table/Internal/IMimeReaderWriter.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ interface IMimeReaderWriter diff --git a/src/Table/Internal/ITable.php b/src/Table/Internal/ITable.php index 719679113..c5eff1838 100644 --- a/src/Table/Internal/ITable.php +++ b/src/Table/Internal/ITable.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php * @see http://msdn.microsoft.com/en-us/library/windowsazure/dd179423.aspx */ diff --git a/src/Table/Internal/MimeReaderWriter.php b/src/Table/Internal/MimeReaderWriter.php index 00a7c0b77..a64f0cf1e 100644 --- a/src/Table/Internal/MimeReaderWriter.php +++ b/src/Table/Internal/MimeReaderWriter.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class MimeReaderWriter implements IMimeReaderWriter diff --git a/src/Table/Models/BatchError.php b/src/Table/Models/BatchError.php index 36216282f..4205f3709 100644 --- a/src/Table/Models/BatchError.php +++ b/src/Table/Models/BatchError.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BatchError diff --git a/src/Table/Models/BatchOperation.php b/src/Table/Models/BatchOperation.php index 2971d04d2..02976cdc8 100644 --- a/src/Table/Models/BatchOperation.php +++ b/src/Table/Models/BatchOperation.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BatchOperation diff --git a/src/Table/Models/BatchOperationParameterName.php b/src/Table/Models/BatchOperationParameterName.php index 617474187..2d8d039c4 100644 --- a/src/Table/Models/BatchOperationParameterName.php +++ b/src/Table/Models/BatchOperationParameterName.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BatchOperationParameterName diff --git a/src/Table/Models/BatchOperationType.php b/src/Table/Models/BatchOperationType.php index 68b0178c4..60bc9a09a 100644 --- a/src/Table/Models/BatchOperationType.php +++ b/src/Table/Models/BatchOperationType.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BatchOperationType diff --git a/src/Table/Models/BatchOperations.php b/src/Table/Models/BatchOperations.php index f7a399263..b664ecdd5 100644 --- a/src/Table/Models/BatchOperations.php +++ b/src/Table/Models/BatchOperations.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BatchOperations diff --git a/src/Table/Models/BatchResult.php b/src/Table/Models/BatchResult.php index 846d663c4..ca0c19d59 100644 --- a/src/Table/Models/BatchResult.php +++ b/src/Table/Models/BatchResult.php @@ -40,7 +40,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BatchResult diff --git a/src/Table/Models/DeleteEntityOptions.php b/src/Table/Models/DeleteEntityOptions.php index 21bdf11db..ce605d6da 100644 --- a/src/Table/Models/DeleteEntityOptions.php +++ b/src/Table/Models/DeleteEntityOptions.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class DeleteEntityOptions extends TableServiceOptions diff --git a/src/Table/Models/EdmType.php b/src/Table/Models/EdmType.php index 3f7bb2c15..854efebaf 100644 --- a/src/Table/Models/EdmType.php +++ b/src/Table/Models/EdmType.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class EdmType diff --git a/src/Table/Models/Entity.php b/src/Table/Models/Entity.php index 60af98426..5572b6463 100644 --- a/src/Table/Models/Entity.php +++ b/src/Table/Models/Entity.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class Entity diff --git a/src/Table/Models/Filters/BinaryFilter.php b/src/Table/Models/Filters/BinaryFilter.php index a40cc26ca..f8ebf3d4f 100644 --- a/src/Table/Models/Filters/BinaryFilter.php +++ b/src/Table/Models/Filters/BinaryFilter.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BinaryFilter extends Filter diff --git a/src/Table/Models/Filters/ConstantFilter.php b/src/Table/Models/Filters/ConstantFilter.php index 75592d064..6816ad864 100644 --- a/src/Table/Models/Filters/ConstantFilter.php +++ b/src/Table/Models/Filters/ConstantFilter.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ConstantFilter extends Filter diff --git a/src/Table/Models/Filters/Filter.php b/src/Table/Models/Filters/Filter.php index 9c685b0c3..5d5ebc835 100644 --- a/src/Table/Models/Filters/Filter.php +++ b/src/Table/Models/Filters/Filter.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class Filter diff --git a/src/Table/Models/Filters/PropertyNameFilter.php b/src/Table/Models/Filters/PropertyNameFilter.php index 2f694e816..987adac5f 100644 --- a/src/Table/Models/Filters/PropertyNameFilter.php +++ b/src/Table/Models/Filters/PropertyNameFilter.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class PropertyNameFilter extends Filter diff --git a/src/Table/Models/Filters/QueryStringFilter.php b/src/Table/Models/Filters/QueryStringFilter.php index ce8c02ebd..cb7726653 100644 --- a/src/Table/Models/Filters/QueryStringFilter.php +++ b/src/Table/Models/Filters/QueryStringFilter.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueryStringFilter extends Filter diff --git a/src/Table/Models/Filters/UnaryFilter.php b/src/Table/Models/Filters/UnaryFilter.php index f4634b50a..67ef070f3 100644 --- a/src/Table/Models/Filters/UnaryFilter.php +++ b/src/Table/Models/Filters/UnaryFilter.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class UnaryFilter extends Filter diff --git a/src/Table/Models/GetEntityResult.php b/src/Table/Models/GetEntityResult.php index db302f1ba..7913ec79d 100644 --- a/src/Table/Models/GetEntityResult.php +++ b/src/Table/Models/GetEntityResult.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetEntityResult diff --git a/src/Table/Models/GetTableResult.php b/src/Table/Models/GetTableResult.php index c0232f828..a71556cc2 100644 --- a/src/Table/Models/GetTableResult.php +++ b/src/Table/Models/GetTableResult.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetTableResult diff --git a/src/Table/Models/InsertEntityResult.php b/src/Table/Models/InsertEntityResult.php index 5b72b71d9..834c4a4d1 100644 --- a/src/Table/Models/InsertEntityResult.php +++ b/src/Table/Models/InsertEntityResult.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class InsertEntityResult diff --git a/src/Table/Models/Property.php b/src/Table/Models/Property.php index 4fb8bd013..158b6481b 100644 --- a/src/Table/Models/Property.php +++ b/src/Table/Models/Property.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class Property diff --git a/src/Table/Models/Query.php b/src/Table/Models/Query.php index fb6559472..c59010cdf 100644 --- a/src/Table/Models/Query.php +++ b/src/Table/Models/Query.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class Query diff --git a/src/Table/Models/QueryEntitiesOptions.php b/src/Table/Models/QueryEntitiesOptions.php index ca6b5e81f..a9fa36ea5 100644 --- a/src/Table/Models/QueryEntitiesOptions.php +++ b/src/Table/Models/QueryEntitiesOptions.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueryEntitiesOptions extends TableServiceOptions diff --git a/src/Table/Models/QueryEntitiesResult.php b/src/Table/Models/QueryEntitiesResult.php index 590e0e07d..270bcab64 100644 --- a/src/Table/Models/QueryEntitiesResult.php +++ b/src/Table/Models/QueryEntitiesResult.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueryEntitiesResult diff --git a/src/Table/Models/QueryTablesOptions.php b/src/Table/Models/QueryTablesOptions.php index 8a11d37e6..926678275 100644 --- a/src/Table/Models/QueryTablesOptions.php +++ b/src/Table/Models/QueryTablesOptions.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueryTablesOptions extends TableServiceOptions diff --git a/src/Table/Models/QueryTablesResult.php b/src/Table/Models/QueryTablesResult.php index 7ccf2fdb7..40ec501bb 100644 --- a/src/Table/Models/QueryTablesResult.php +++ b/src/Table/Models/QueryTablesResult.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueryTablesResult diff --git a/src/Table/Models/TableServiceOptions.php b/src/Table/Models/TableServiceOptions.php index cedd82e2e..5324d1328 100644 --- a/src/Table/Models/TableServiceOptions.php +++ b/src/Table/Models/TableServiceOptions.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class TableServiceOptions diff --git a/src/Table/Models/UpdateEntityResult.php b/src/Table/Models/UpdateEntityResult.php index 03838818c..5914c393d 100644 --- a/src/Table/Models/UpdateEntityResult.php +++ b/src/Table/Models/UpdateEntityResult.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class UpdateEntityResult diff --git a/src/Table/TableRestProxy.php b/src/Table/TableRestProxy.php index ce5ddc45a..1f77a9e6b 100644 --- a/src/Table/TableRestProxy.php +++ b/src/Table/TableRestProxy.php @@ -63,7 +63,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class TableRestProxy extends ServiceRestProxy implements ITable diff --git a/tests/framework/BlobServiceRestProxyTestBase.php b/tests/framework/BlobServiceRestProxyTestBase.php index a41de7430..693649f49 100644 --- a/tests/framework/BlobServiceRestProxyTestBase.php +++ b/tests/framework/BlobServiceRestProxyTestBase.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BlobServiceRestProxyTestBase extends ServiceRestProxyTestBase diff --git a/tests/framework/QueueServiceRestProxyTestBase.php b/tests/framework/QueueServiceRestProxyTestBase.php index 29403a14c..823e1c13b 100644 --- a/tests/framework/QueueServiceRestProxyTestBase.php +++ b/tests/framework/QueueServiceRestProxyTestBase.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueueServiceRestProxyTestBase extends ServiceRestProxyTestBase diff --git a/tests/framework/RestProxyTestBase.php b/tests/framework/RestProxyTestBase.php index 71281bc23..e892aa4d7 100644 --- a/tests/framework/RestProxyTestBase.php +++ b/tests/framework/RestProxyTestBase.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class RestProxyTestBase extends \PHPUnit_Framework_TestCase diff --git a/tests/framework/ServiceRestProxyTestBase.php b/tests/framework/ServiceRestProxyTestBase.php index f0cf1e829..8f899a769 100644 --- a/tests/framework/ServiceRestProxyTestBase.php +++ b/tests/framework/ServiceRestProxyTestBase.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ServiceRestProxyTestBase extends RestProxyTestBase diff --git a/tests/framework/TableServiceRestProxyTestBase.php b/tests/framework/TableServiceRestProxyTestBase.php index 0079e5bba..898f62945 100644 --- a/tests/framework/TableServiceRestProxyTestBase.php +++ b/tests/framework/TableServiceRestProxyTestBase.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class TableServiceRestProxyTestBase extends ServiceRestProxyTestBase diff --git a/tests/framework/TestResources.php b/tests/framework/TestResources.php index 1862bcadb..e5cf66417 100644 --- a/tests/framework/TestResources.php +++ b/tests/framework/TestResources.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class TestResources diff --git a/tests/framework/VirtualFileSystem.php b/tests/framework/VirtualFileSystem.php index 2fdcf03ef..3793167ac 100644 --- a/tests/framework/VirtualFileSystem.php +++ b/tests/framework/VirtualFileSystem.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class VirtualFileSystem diff --git a/tests/mock/Common/Internal/Authentication/OAuthSchemeMock.php b/tests/mock/Common/Internal/Authentication/OAuthSchemeMock.php index bd8b962b1..40e972b4b 100644 --- a/tests/mock/Common/Internal/Authentication/OAuthSchemeMock.php +++ b/tests/mock/Common/Internal/Authentication/OAuthSchemeMock.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class OAuthSchemeMock extends OAuthScheme diff --git a/tests/mock/Common/Internal/Authentication/SharedKeyAuthSchemeMock.php b/tests/mock/Common/Internal/Authentication/SharedKeyAuthSchemeMock.php index e49102a74..5ad54d4c9 100644 --- a/tests/mock/Common/Internal/Authentication/SharedKeyAuthSchemeMock.php +++ b/tests/mock/Common/Internal/Authentication/SharedKeyAuthSchemeMock.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class SharedKeyAuthSchemeMock extends SharedKeyAuthScheme diff --git a/tests/mock/Common/Internal/Authentication/StorageAuthSchemeMock.php b/tests/mock/Common/Internal/Authentication/StorageAuthSchemeMock.php index ef5a01357..bf3799a64 100644 --- a/tests/mock/Common/Internal/Authentication/StorageAuthSchemeMock.php +++ b/tests/mock/Common/Internal/Authentication/StorageAuthSchemeMock.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class StorageAuthSchemeMock extends StorageAuthScheme diff --git a/tests/mock/Common/Internal/Authentication/TableSharedKeyLiteAuthSchemeMock.php b/tests/mock/Common/Internal/Authentication/TableSharedKeyLiteAuthSchemeMock.php index 7dfd22fd0..1b18e6371 100644 --- a/tests/mock/Common/Internal/Authentication/TableSharedKeyLiteAuthSchemeMock.php +++ b/tests/mock/Common/Internal/Authentication/TableSharedKeyLiteAuthSchemeMock.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class TableSharedKeyLiteAuthSchemeMock extends TableSharedKeyLiteAuthScheme diff --git a/tests/mock/Common/Internal/Filters/SimpleFilterMock.php b/tests/mock/Common/Internal/Filters/SimpleFilterMock.php index b706ea404..08f27e948 100644 --- a/tests/mock/Common/Internal/Filters/SimpleFilterMock.php +++ b/tests/mock/Common/Internal/Filters/SimpleFilterMock.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class SimpleFilterMock implements \MicrosoftAzure\Storage\Common\Internal\IServiceFilter diff --git a/tests/unit/Blob/BlobRestProxyTest.php b/tests/unit/Blob/BlobRestProxyTest.php index 716f6f4ea..12aa4dcba 100644 --- a/tests/unit/Blob/BlobRestProxyTest.php +++ b/tests/unit/Blob/BlobRestProxyTest.php @@ -63,7 +63,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BlobRestProxyTest extends BlobServiceRestProxyTestBase diff --git a/tests/unit/Blob/Models/AccessConditionTest.php b/tests/unit/Blob/Models/AccessConditionTest.php index 2d8ca03bb..98fb195d4 100644 --- a/tests/unit/Blob/Models/AccessConditionTest.php +++ b/tests/unit/Blob/Models/AccessConditionTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class AccessConditionTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/AccessPolicyTest.php b/tests/unit/Blob/Models/AccessPolicyTest.php index 5f02150bb..be18203dd 100644 --- a/tests/unit/Blob/Models/AccessPolicyTest.php +++ b/tests/unit/Blob/Models/AccessPolicyTest.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class AccessPolicyTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/AcquireLeaseOptionsTest.php b/tests/unit/Blob/Models/AcquireLeaseOptionsTest.php index 669f6d0b1..80b278bce 100644 --- a/tests/unit/Blob/Models/AcquireLeaseOptionsTest.php +++ b/tests/unit/Blob/Models/AcquireLeaseOptionsTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class AcquireLeaseOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/AcquireLeaseResultTest.php b/tests/unit/Blob/Models/AcquireLeaseResultTest.php index df3f7d27a..e00589f4f 100644 --- a/tests/unit/Blob/Models/AcquireLeaseResultTest.php +++ b/tests/unit/Blob/Models/AcquireLeaseResultTest.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class AcquireLeaseResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/BlobBlockTypeTest.php b/tests/unit/Blob/Models/BlobBlockTypeTest.php index 6ce793c7b..78ef23f51 100644 --- a/tests/unit/Blob/Models/BlobBlockTypeTest.php +++ b/tests/unit/Blob/Models/BlobBlockTypeTest.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BlobBlockTypeTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/BlobPrefixTest.php b/tests/unit/Blob/Models/BlobPrefixTest.php index 398e1734a..e9d5a4fe7 100644 --- a/tests/unit/Blob/Models/BlobPrefixTest.php +++ b/tests/unit/Blob/Models/BlobPrefixTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BlobPrefixTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/BlobPropertiesTest.php b/tests/unit/Blob/Models/BlobPropertiesTest.php index c93ccdb2d..162fcf0eb 100644 --- a/tests/unit/Blob/Models/BlobPropertiesTest.php +++ b/tests/unit/Blob/Models/BlobPropertiesTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BlobPropertiesTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/BlobServiceOptionsTest.php b/tests/unit/Blob/Models/BlobServiceOptionsTest.php index 0cedac463..e14672a0e 100644 --- a/tests/unit/Blob/Models/BlobServiceOptionsTest.php +++ b/tests/unit/Blob/Models/BlobServiceOptionsTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BlobServiceOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/BlobTest.php b/tests/unit/Blob/Models/BlobTest.php index 01a74c1b6..c9d9ff372 100644 --- a/tests/unit/Blob/Models/BlobTest.php +++ b/tests/unit/Blob/Models/BlobTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BlobTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/BlobTypeTest.php b/tests/unit/Blob/Models/BlobTypeTest.php index 30d45d9ef..7a55ecbac 100644 --- a/tests/unit/Blob/Models/BlobTypeTest.php +++ b/tests/unit/Blob/Models/BlobTypeTest.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BlobTypeTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/BlockListTest.php b/tests/unit/Blob/Models/BlockListTest.php index d86736105..7589d6378 100644 --- a/tests/unit/Blob/Models/BlockListTest.php +++ b/tests/unit/Blob/Models/BlockListTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BlockListTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/BlockTest.php b/tests/unit/Blob/Models/BlockTest.php index 1e14ec224..a1695efa1 100644 --- a/tests/unit/Blob/Models/BlockTest.php +++ b/tests/unit/Blob/Models/BlockTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BlockTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/BreakLeaseResultTest.php b/tests/unit/Blob/Models/BreakLeaseResultTest.php index e8c957517..68b628bcc 100644 --- a/tests/unit/Blob/Models/BreakLeaseResultTest.php +++ b/tests/unit/Blob/Models/BreakLeaseResultTest.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BreakLeaseResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/CommitBlobBlocksOptionsTest.php b/tests/unit/Blob/Models/CommitBlobBlocksOptionsTest.php index 0a07e1311..a7769cf8f 100644 --- a/tests/unit/Blob/Models/CommitBlobBlocksOptionsTest.php +++ b/tests/unit/Blob/Models/CommitBlobBlocksOptionsTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CommitBlobBlocksOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/ContainerACLTest.php b/tests/unit/Blob/Models/ContainerACLTest.php index 5fbe63e69..756f9c3b8 100644 --- a/tests/unit/Blob/Models/ContainerACLTest.php +++ b/tests/unit/Blob/Models/ContainerACLTest.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ContainerAclTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/ContainerPropertiesTest.php b/tests/unit/Blob/Models/ContainerPropertiesTest.php index 526f44a06..4f273e45e 100644 --- a/tests/unit/Blob/Models/ContainerPropertiesTest.php +++ b/tests/unit/Blob/Models/ContainerPropertiesTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ContainerPropertiesTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/ContainerTest.php b/tests/unit/Blob/Models/ContainerTest.php index fb33fbfd3..85928d1dd 100644 --- a/tests/unit/Blob/Models/ContainerTest.php +++ b/tests/unit/Blob/Models/ContainerTest.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ContainerTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/CopyBlobOptionsTest.php b/tests/unit/Blob/Models/CopyBlobOptionsTest.php index 72b370f66..61ba55fe1 100644 --- a/tests/unit/Blob/Models/CopyBlobOptionsTest.php +++ b/tests/unit/Blob/Models/CopyBlobOptionsTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CopyBlobOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/CopyBlobResultTest.php b/tests/unit/Blob/Models/CopyBlobResultTest.php index 4e5f8b233..ef7c72ecf 100644 --- a/tests/unit/Blob/Models/CopyBlobResultTest.php +++ b/tests/unit/Blob/Models/CopyBlobResultTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CopyBlobResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/CreateBlobBlockOptionsTest.php b/tests/unit/Blob/Models/CreateBlobBlockOptionsTest.php index f442fd4a0..069ed731a 100644 --- a/tests/unit/Blob/Models/CreateBlobBlockOptionsTest.php +++ b/tests/unit/Blob/Models/CreateBlobBlockOptionsTest.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateBlobBlockOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/CreateBlobOptionsTest.php b/tests/unit/Blob/Models/CreateBlobOptionsTest.php index c65aed587..8ac0bb4a5 100644 --- a/tests/unit/Blob/Models/CreateBlobOptionsTest.php +++ b/tests/unit/Blob/Models/CreateBlobOptionsTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateBlobOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/CreateBlobPagesOptionsTest.php b/tests/unit/Blob/Models/CreateBlobPagesOptionsTest.php index 7236a57b4..9b878974a 100644 --- a/tests/unit/Blob/Models/CreateBlobPagesOptionsTest.php +++ b/tests/unit/Blob/Models/CreateBlobPagesOptionsTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateBlobPagesOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/CreateBlobPagesResultTest.php b/tests/unit/Blob/Models/CreateBlobPagesResultTest.php index fadfecf44..fa04f72f9 100644 --- a/tests/unit/Blob/Models/CreateBlobPagesResultTest.php +++ b/tests/unit/Blob/Models/CreateBlobPagesResultTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateBlobPagesResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/CreateBlobSnapshotOptionsTest.php b/tests/unit/Blob/Models/CreateBlobSnapshotOptionsTest.php index a328c25cf..f9d32b7c9 100644 --- a/tests/unit/Blob/Models/CreateBlobSnapshotOptionsTest.php +++ b/tests/unit/Blob/Models/CreateBlobSnapshotOptionsTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateBlobSnapshotOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/CreateBlobSnapshotResultTest.php b/tests/unit/Blob/Models/CreateBlobSnapshotResultTest.php index 360a055b6..3b83146f9 100644 --- a/tests/unit/Blob/Models/CreateBlobSnapshotResultTest.php +++ b/tests/unit/Blob/Models/CreateBlobSnapshotResultTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateBlobSnapshotResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/CreateContainerOptionsTest.php b/tests/unit/Blob/Models/CreateContainerOptionsTest.php index da2698a8d..63590e2dd 100644 --- a/tests/unit/Blob/Models/CreateContainerOptionsTest.php +++ b/tests/unit/Blob/Models/CreateContainerOptionsTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateContainerOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/DeleteBlobOptionsTest.php b/tests/unit/Blob/Models/DeleteBlobOptionsTest.php index 64217c41a..40f5c176f 100644 --- a/tests/unit/Blob/Models/DeleteBlobOptionsTest.php +++ b/tests/unit/Blob/Models/DeleteBlobOptionsTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class DeleteBlobOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/DeleteContainerOptionsTest.php b/tests/unit/Blob/Models/DeleteContainerOptionsTest.php index 7e0aa4d01..8357965a8 100644 --- a/tests/unit/Blob/Models/DeleteContainerOptionsTest.php +++ b/tests/unit/Blob/Models/DeleteContainerOptionsTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class DeleteContainerOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/GetBlobMetadataOptionsTest.php b/tests/unit/Blob/Models/GetBlobMetadataOptionsTest.php index 95e34d1ed..6774cc0c2 100644 --- a/tests/unit/Blob/Models/GetBlobMetadataOptionsTest.php +++ b/tests/unit/Blob/Models/GetBlobMetadataOptionsTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetBlobMetadataOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/GetBlobMetadataResultTest.php b/tests/unit/Blob/Models/GetBlobMetadataResultTest.php index 37a1d4443..498963b63 100644 --- a/tests/unit/Blob/Models/GetBlobMetadataResultTest.php +++ b/tests/unit/Blob/Models/GetBlobMetadataResultTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetBlobMetadataResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/GetBlobOptionsTest.php b/tests/unit/Blob/Models/GetBlobOptionsTest.php index c25e197aa..a2948540d 100644 --- a/tests/unit/Blob/Models/GetBlobOptionsTest.php +++ b/tests/unit/Blob/Models/GetBlobOptionsTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetBlobOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/GetBlobPropertiesOptionsTest.php b/tests/unit/Blob/Models/GetBlobPropertiesOptionsTest.php index 57a32625d..3f33b4845 100644 --- a/tests/unit/Blob/Models/GetBlobPropertiesOptionsTest.php +++ b/tests/unit/Blob/Models/GetBlobPropertiesOptionsTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetBlobPropertiesOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/GetBlobPropertiesResultTest.php b/tests/unit/Blob/Models/GetBlobPropertiesResultTest.php index f67bac32c..f0826f5c8 100644 --- a/tests/unit/Blob/Models/GetBlobPropertiesResultTest.php +++ b/tests/unit/Blob/Models/GetBlobPropertiesResultTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetBlobPropertiesResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/GetBlobResultTest.php b/tests/unit/Blob/Models/GetBlobResultTest.php index 530f40c31..9a28315eb 100644 --- a/tests/unit/Blob/Models/GetBlobResultTest.php +++ b/tests/unit/Blob/Models/GetBlobResultTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetBlobResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/GetContainerACLResultTest.php b/tests/unit/Blob/Models/GetContainerACLResultTest.php index 4f80af77b..66847d43b 100644 --- a/tests/unit/Blob/Models/GetContainerACLResultTest.php +++ b/tests/unit/Blob/Models/GetContainerACLResultTest.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetContainerAclResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/GetContainerPropertiesResultTest.php b/tests/unit/Blob/Models/GetContainerPropertiesResultTest.php index e5f6546e5..d8b6abe8f 100644 --- a/tests/unit/Blob/Models/GetContainerPropertiesResultTest.php +++ b/tests/unit/Blob/Models/GetContainerPropertiesResultTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetContainerPropertiesResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/LeaseModeTest.php b/tests/unit/Blob/Models/LeaseModeTest.php index 5220c6e98..510c6813e 100644 --- a/tests/unit/Blob/Models/LeaseModeTest.php +++ b/tests/unit/Blob/Models/LeaseModeTest.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class LeaseModeTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/ListBlobBlocksOptionsTest.php b/tests/unit/Blob/Models/ListBlobBlocksOptionsTest.php index 09122d33c..402d22204 100644 --- a/tests/unit/Blob/Models/ListBlobBlocksOptionsTest.php +++ b/tests/unit/Blob/Models/ListBlobBlocksOptionsTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListBlobBlocksOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/ListBlobBlocksResultTest.php b/tests/unit/Blob/Models/ListBlobBlocksResultTest.php index a482ac839..684ff4321 100644 --- a/tests/unit/Blob/Models/ListBlobBlocksResultTest.php +++ b/tests/unit/Blob/Models/ListBlobBlocksResultTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListBlobBlocksResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/ListBlobsOptionsTest.php b/tests/unit/Blob/Models/ListBlobsOptionsTest.php index 9e6952e7b..20ed2ae3e 100644 --- a/tests/unit/Blob/Models/ListBlobsOptionsTest.php +++ b/tests/unit/Blob/Models/ListBlobsOptionsTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListBlobsOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/ListBlobsResultTest.php b/tests/unit/Blob/Models/ListBlobsResultTest.php index 6128c07b2..43bb03132 100644 --- a/tests/unit/Blob/Models/ListBlobsResultTest.php +++ b/tests/unit/Blob/Models/ListBlobsResultTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListBlobsResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/ListContainersOptionsTest.php b/tests/unit/Blob/Models/ListContainersOptionsTest.php index 28a27d18f..702512fa8 100644 --- a/tests/unit/Blob/Models/ListContainersOptionsTest.php +++ b/tests/unit/Blob/Models/ListContainersOptionsTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListContainersOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/ListContainersResultTest.php b/tests/unit/Blob/Models/ListContainersResultTest.php index 8b6873be9..8a5cb8c4e 100644 --- a/tests/unit/Blob/Models/ListContainersResultTest.php +++ b/tests/unit/Blob/Models/ListContainersResultTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListContainersResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/ListPageBlobRangesOptionsTest.php b/tests/unit/Blob/Models/ListPageBlobRangesOptionsTest.php index 2e439f101..a4073ff23 100644 --- a/tests/unit/Blob/Models/ListPageBlobRangesOptionsTest.php +++ b/tests/unit/Blob/Models/ListPageBlobRangesOptionsTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListPageBlobRangesOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/ListPageBlobRangesResultTest.php b/tests/unit/Blob/Models/ListPageBlobRangesResultTest.php index 1506c5adf..9bdac7766 100644 --- a/tests/unit/Blob/Models/ListPageBlobRangesResultTest.php +++ b/tests/unit/Blob/Models/ListPageBlobRangesResultTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListPageBlobRangesResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/PageRangeTest.php b/tests/unit/Blob/Models/PageRangeTest.php index acfe42809..192329605 100644 --- a/tests/unit/Blob/Models/PageRangeTest.php +++ b/tests/unit/Blob/Models/PageRangeTest.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class PageRangeTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/PublicAccessTypeTest.php b/tests/unit/Blob/Models/PublicAccessTypeTest.php index 19eac9f26..cb879189d 100644 --- a/tests/unit/Blob/Models/PublicAccessTypeTest.php +++ b/tests/unit/Blob/Models/PublicAccessTypeTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class PublicAccessTypeTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/SetBlobMetadataOptionsTest.php b/tests/unit/Blob/Models/SetBlobMetadataOptionsTest.php index 8103a3326..4ef8d86d1 100644 --- a/tests/unit/Blob/Models/SetBlobMetadataOptionsTest.php +++ b/tests/unit/Blob/Models/SetBlobMetadataOptionsTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class SetBlobMetadataOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/SetBlobMetadataResultTest.php b/tests/unit/Blob/Models/SetBlobMetadataResultTest.php index cd8fee3ec..debb97bfe 100644 --- a/tests/unit/Blob/Models/SetBlobMetadataResultTest.php +++ b/tests/unit/Blob/Models/SetBlobMetadataResultTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class SetBlobMetadataResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/SetBlobPropertiesOptionsTest.php b/tests/unit/Blob/Models/SetBlobPropertiesOptionsTest.php index 35fc42f2c..bc72303b3 100644 --- a/tests/unit/Blob/Models/SetBlobPropertiesOptionsTest.php +++ b/tests/unit/Blob/Models/SetBlobPropertiesOptionsTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class SetBlobPropertiesOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/SetBlobPropertiesResultTest.php b/tests/unit/Blob/Models/SetBlobPropertiesResultTest.php index dafd8840f..d85e5247e 100644 --- a/tests/unit/Blob/Models/SetBlobPropertiesResultTest.php +++ b/tests/unit/Blob/Models/SetBlobPropertiesResultTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class SetBlobPropertiesResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/SetContainerMetadataOptionsTest.php b/tests/unit/Blob/Models/SetContainerMetadataOptionsTest.php index 6629749d9..0ee4c5dca 100644 --- a/tests/unit/Blob/Models/SetContainerMetadataOptionsTest.php +++ b/tests/unit/Blob/Models/SetContainerMetadataOptionsTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class SetContainerMetadataOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Blob/Models/SignedIdentifierTest.php b/tests/unit/Blob/Models/SignedIdentifierTest.php index 0ed073d98..810b191a3 100644 --- a/tests/unit/Blob/Models/SignedIdentifierTest.php +++ b/tests/unit/Blob/Models/SignedIdentifierTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class SignedIdentifierTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/CloudConfigurationManagerTest.php b/tests/unit/Common/CloudConfigurationManagerTest.php index a7e9ab731..983113867 100644 --- a/tests/unit/Common/CloudConfigurationManagerTest.php +++ b/tests/unit/Common/CloudConfigurationManagerTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CloudConfigurationManagerTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/Authentication/SharedKeyAuthSchemeTest.php b/tests/unit/Common/Internal/Authentication/SharedKeyAuthSchemeTest.php index 582c98190..e5bc0f15b 100644 --- a/tests/unit/Common/Internal/Authentication/SharedKeyAuthSchemeTest.php +++ b/tests/unit/Common/Internal/Authentication/SharedKeyAuthSchemeTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class SharedKeyAuthSchemeTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/Authentication/StorageAuthSchemeTest.php b/tests/unit/Common/Internal/Authentication/StorageAuthSchemeTest.php index 543afc6e5..3a248639a 100644 --- a/tests/unit/Common/Internal/Authentication/StorageAuthSchemeTest.php +++ b/tests/unit/Common/Internal/Authentication/StorageAuthSchemeTest.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class StorageAuthSchemeTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/Authentication/TableSharedKeyLiteAuthSchemeTest.php b/tests/unit/Common/Internal/Authentication/TableSharedKeyLiteAuthSchemeTest.php index b64a94ee6..168e3f655 100644 --- a/tests/unit/Common/Internal/Authentication/TableSharedKeyLiteAuthSchemeTest.php +++ b/tests/unit/Common/Internal/Authentication/TableSharedKeyLiteAuthSchemeTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class TableSharedKeyLiteAuthSchemeTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/ConnectionStringParserTest.php b/tests/unit/Common/Internal/ConnectionStringParserTest.php index 95972f9a1..57b96a009 100644 --- a/tests/unit/Common/Internal/ConnectionStringParserTest.php +++ b/tests/unit/Common/Internal/ConnectionStringParserTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ConnectionStringParserTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/ConnectionStringSourceTest.php b/tests/unit/Common/Internal/ConnectionStringSourceTest.php index bf99800fa..1fc9c38fd 100644 --- a/tests/unit/Common/Internal/ConnectionStringSourceTest.php +++ b/tests/unit/Common/Internal/ConnectionStringSourceTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ConnectionStringSourceTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/Filters/AuthenticationFilterTest.php b/tests/unit/Common/Internal/Filters/AuthenticationFilterTest.php index 6582ee4b5..be2504a75 100644 --- a/tests/unit/Common/Internal/Filters/AuthenticationFilterTest.php +++ b/tests/unit/Common/Internal/Filters/AuthenticationFilterTest.php @@ -38,7 +38,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class AuthenticationFilterTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/Filters/DateFilterTest.php b/tests/unit/Common/Internal/Filters/DateFilterTest.php index 2664cf74c..c957dd975 100644 --- a/tests/unit/Common/Internal/Filters/DateFilterTest.php +++ b/tests/unit/Common/Internal/Filters/DateFilterTest.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class DateFilterTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/Filters/ExponentialRetryPolicyTest.php b/tests/unit/Common/Internal/Filters/ExponentialRetryPolicyTest.php index a07159e8d..12240e473 100644 --- a/tests/unit/Common/Internal/Filters/ExponentialRetryPolicyTest.php +++ b/tests/unit/Common/Internal/Filters/ExponentialRetryPolicyTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ExponentialRetryPolicyTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/Filters/HeadersFilterTest.php b/tests/unit/Common/Internal/Filters/HeadersFilterTest.php index 7a1cfaf65..59c88a933 100644 --- a/tests/unit/Common/Internal/Filters/HeadersFilterTest.php +++ b/tests/unit/Common/Internal/Filters/HeadersFilterTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class HeadersFilterTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/Http/HttpCallContextTest.php b/tests/unit/Common/Internal/Http/HttpCallContextTest.php index d992f6d7a..2da71fedc 100644 --- a/tests/unit/Common/Internal/Http/HttpCallContextTest.php +++ b/tests/unit/Common/Internal/Http/HttpCallContextTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class HttpCallContextTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/InvalidArgumentTypeExceptionTest.php b/tests/unit/Common/Internal/InvalidArgumentTypeExceptionTest.php index edd8f3f95..fd955d1f2 100644 --- a/tests/unit/Common/Internal/InvalidArgumentTypeExceptionTest.php +++ b/tests/unit/Common/Internal/InvalidArgumentTypeExceptionTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class InvalidArgumentTypeExceptionTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/LoggerTest.php b/tests/unit/Common/Internal/LoggerTest.php index e95cce8dd..5ce2518e7 100644 --- a/tests/unit/Common/Internal/LoggerTest.php +++ b/tests/unit/Common/Internal/LoggerTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class LoggerTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/Serialization/DummyClass.php b/tests/unit/Common/Internal/Serialization/DummyClass.php index d9c0b4ab4..73757939e 100644 --- a/tests/unit/Common/Internal/Serialization/DummyClass.php +++ b/tests/unit/Common/Internal/Serialization/DummyClass.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class DummyClass diff --git a/tests/unit/Common/Internal/Serialization/JsonSerializerTest.php b/tests/unit/Common/Internal/Serialization/JsonSerializerTest.php index 385cf619f..ccb22b04c 100644 --- a/tests/unit/Common/Internal/Serialization/JsonSerializerTest.php +++ b/tests/unit/Common/Internal/Serialization/JsonSerializerTest.php @@ -38,7 +38,7 @@ * @author Azure Storage PHP SDK * @copyright Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class JsonSerializerTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/Serialization/XmlSerializerTest.php b/tests/unit/Common/Internal/Serialization/XmlSerializerTest.php index 44f98bf01..7af8c7c8f 100644 --- a/tests/unit/Common/Internal/Serialization/XmlSerializerTest.php +++ b/tests/unit/Common/Internal/Serialization/XmlSerializerTest.php @@ -37,7 +37,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class XmlSerializerTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/ServiceRestProxyTest.php b/tests/unit/Common/Internal/ServiceRestProxyTest.php index 0d446cb26..cb9de79b5 100644 --- a/tests/unit/Common/Internal/ServiceRestProxyTest.php +++ b/tests/unit/Common/Internal/ServiceRestProxyTest.php @@ -37,7 +37,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ServiceRestProxyTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/StorageServiceSettingsTest.php b/tests/unit/Common/Internal/StorageServiceSettingsTest.php index 241d3620f..9b3af21aa 100644 --- a/tests/unit/Common/Internal/StorageServiceSettingsTest.php +++ b/tests/unit/Common/Internal/StorageServiceSettingsTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class StorageServiceSettingsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/UtilitiesTest.php b/tests/unit/Common/Internal/UtilitiesTest.php index ed80c4330..7c9e35935 100644 --- a/tests/unit/Common/Internal/UtilitiesTest.php +++ b/tests/unit/Common/Internal/UtilitiesTest.php @@ -39,7 +39,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class UtilitiesTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Internal/ValidateTest.php b/tests/unit/Common/Internal/ValidateTest.php index 4bedfe58f..407e326e4 100644 --- a/tests/unit/Common/Internal/ValidateTest.php +++ b/tests/unit/Common/Internal/ValidateTest.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ValidateTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Models/GetServicePropertiesResultTest.php b/tests/unit/Common/Models/GetServicePropertiesResultTest.php index 253721706..52a5f9484 100644 --- a/tests/unit/Common/Models/GetServicePropertiesResultTest.php +++ b/tests/unit/Common/Models/GetServicePropertiesResultTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetServicePropertiesResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Models/LoggingTest.php b/tests/unit/Common/Models/LoggingTest.php index 9a1ed08d1..8bfe48d9f 100644 --- a/tests/unit/Common/Models/LoggingTest.php +++ b/tests/unit/Common/Models/LoggingTest.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class LoggingTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Models/MetricsTest.php b/tests/unit/Common/Models/MetricsTest.php index 8f690d5c8..db95e0277 100644 --- a/tests/unit/Common/Models/MetricsTest.php +++ b/tests/unit/Common/Models/MetricsTest.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class MetricsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Models/RetentionPolicyTest.php b/tests/unit/Common/Models/RetentionPolicyTest.php index 9b76f5c3d..d2a7ef513 100644 --- a/tests/unit/Common/Models/RetentionPolicyTest.php +++ b/tests/unit/Common/Models/RetentionPolicyTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class RetentionPolicyTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/Models/ServicePropertiesTest.php b/tests/unit/Common/Models/ServicePropertiesTest.php index bac3cb3ff..e115350f0 100644 --- a/tests/unit/Common/Models/ServicePropertiesTest.php +++ b/tests/unit/Common/Models/ServicePropertiesTest.php @@ -39,7 +39,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ServicePropertiesTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/ServiceExceptionTest.php b/tests/unit/Common/ServiceExceptionTest.php index 3889d2e66..688409e3c 100644 --- a/tests/unit/Common/ServiceExceptionTest.php +++ b/tests/unit/Common/ServiceExceptionTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ServiceExceptionTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Common/ServicesBuilderTest.php b/tests/unit/Common/ServicesBuilderTest.php index 32a34b0c3..a18ec9554 100644 --- a/tests/unit/Common/ServicesBuilderTest.php +++ b/tests/unit/Common/ServicesBuilderTest.php @@ -38,7 +38,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ServicesBuilderTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Queue/Models/CreateMessageOptionsTest.php b/tests/unit/Queue/Models/CreateMessageOptionsTest.php index 25813c3eb..0ad5ed80f 100644 --- a/tests/unit/Queue/Models/CreateMessageOptionsTest.php +++ b/tests/unit/Queue/Models/CreateMessageOptionsTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateMessageOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Queue/Models/CreateQueueOptionsTest.php b/tests/unit/Queue/Models/CreateQueueOptionsTest.php index 751f6b57b..aa8dca7e6 100644 --- a/tests/unit/Queue/Models/CreateQueueOptionsTest.php +++ b/tests/unit/Queue/Models/CreateQueueOptionsTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class CreateQueueOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Queue/Models/GetQueueMetadataResultTest.php b/tests/unit/Queue/Models/GetQueueMetadataResultTest.php index 2e66ec6f1..4e9b61912 100644 --- a/tests/unit/Queue/Models/GetQueueMetadataResultTest.php +++ b/tests/unit/Queue/Models/GetQueueMetadataResultTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetQueueMetadataResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Queue/Models/ListMessagesOptionsTest.php b/tests/unit/Queue/Models/ListMessagesOptionsTest.php index 4f3613cf1..b62d42258 100644 --- a/tests/unit/Queue/Models/ListMessagesOptionsTest.php +++ b/tests/unit/Queue/Models/ListMessagesOptionsTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListMessagesOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Queue/Models/ListMessagesResultTest.php b/tests/unit/Queue/Models/ListMessagesResultTest.php index 7eac8431d..560f84783 100644 --- a/tests/unit/Queue/Models/ListMessagesResultTest.php +++ b/tests/unit/Queue/Models/ListMessagesResultTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListMessagesResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Queue/Models/ListQueuesOptionsTest.php b/tests/unit/Queue/Models/ListQueuesOptionsTest.php index 9aa7302c9..9521c72ce 100644 --- a/tests/unit/Queue/Models/ListQueuesOptionsTest.php +++ b/tests/unit/Queue/Models/ListQueuesOptionsTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListQueuesOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Queue/Models/ListQueuesResultTest.php b/tests/unit/Queue/Models/ListQueuesResultTest.php index 9b94ddb6d..c9d7e8ed2 100644 --- a/tests/unit/Queue/Models/ListQueuesResultTest.php +++ b/tests/unit/Queue/Models/ListQueuesResultTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ListQueuesResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Queue/Models/MicrosoftAzureQueueMessageTest.php b/tests/unit/Queue/Models/MicrosoftAzureQueueMessageTest.php index 19f6f7a47..462e3d0de 100644 --- a/tests/unit/Queue/Models/MicrosoftAzureQueueMessageTest.php +++ b/tests/unit/Queue/Models/MicrosoftAzureQueueMessageTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class MicrosoftAzureQueueMessageTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Queue/Models/PeekMessagesOptionsTest.php b/tests/unit/Queue/Models/PeekMessagesOptionsTest.php index 84155cc03..87b56b760 100644 --- a/tests/unit/Queue/Models/PeekMessagesOptionsTest.php +++ b/tests/unit/Queue/Models/PeekMessagesOptionsTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class PeekMessagesOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Queue/Models/PeekMessagesResultTest.php b/tests/unit/Queue/Models/PeekMessagesResultTest.php index dc3a83ecc..8d087ab62 100644 --- a/tests/unit/Queue/Models/PeekMessagesResultTest.php +++ b/tests/unit/Queue/Models/PeekMessagesResultTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class PeekMessagesResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Queue/Models/QueueMessageTest.php b/tests/unit/Queue/Models/QueueMessageTest.php index 2f567e415..9e2ae4703 100644 --- a/tests/unit/Queue/Models/QueueMessageTest.php +++ b/tests/unit/Queue/Models/QueueMessageTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueueMessageTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Queue/Models/QueueServiceOptionsTest.php b/tests/unit/Queue/Models/QueueServiceOptionsTest.php index e3276b2ad..7a6a96206 100644 --- a/tests/unit/Queue/Models/QueueServiceOptionsTest.php +++ b/tests/unit/Queue/Models/QueueServiceOptionsTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueueServiceOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Queue/Models/QueueTest.php b/tests/unit/Queue/Models/QueueTest.php index 48f4aad6e..f4e82c018 100644 --- a/tests/unit/Queue/Models/QueueTest.php +++ b/tests/unit/Queue/Models/QueueTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueueTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Queue/Models/UpdateMessageResultTest.php b/tests/unit/Queue/Models/UpdateMessageResultTest.php index 976af3f2d..04e0b2196 100644 --- a/tests/unit/Queue/Models/UpdateMessageResultTest.php +++ b/tests/unit/Queue/Models/UpdateMessageResultTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class UpdateMessageResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Queue/QueueRestProxyTest.php b/tests/unit/Queue/QueueRestProxyTest.php index e40207189..3e33c23e4 100644 --- a/tests/unit/Queue/QueueRestProxyTest.php +++ b/tests/unit/Queue/QueueRestProxyTest.php @@ -47,7 +47,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueueRestProxyTest extends QueueServiceRestProxyTestBase diff --git a/tests/unit/Table/Internal/AtomReaderWriterTest.php b/tests/unit/Table/Internal/AtomReaderWriterTest.php index 02243740f..333a60cf7 100644 --- a/tests/unit/Table/Internal/AtomReaderWriterTest.php +++ b/tests/unit/Table/Internal/AtomReaderWriterTest.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class AtomReaderWriterTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/BatchErrorTest.php b/tests/unit/Table/Models/BatchErrorTest.php index 6b976e007..4e43a03f2 100644 --- a/tests/unit/Table/Models/BatchErrorTest.php +++ b/tests/unit/Table/Models/BatchErrorTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BatchErrorTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/BatchOperationParameterNameTest.php b/tests/unit/Table/Models/BatchOperationParameterNameTest.php index 04237c556..7ac413c67 100644 --- a/tests/unit/Table/Models/BatchOperationParameterNameTest.php +++ b/tests/unit/Table/Models/BatchOperationParameterNameTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BatchOperationParameterNameTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/BatchOperationTest.php b/tests/unit/Table/Models/BatchOperationTest.php index 590c671d5..93fe4568c 100644 --- a/tests/unit/Table/Models/BatchOperationTest.php +++ b/tests/unit/Table/Models/BatchOperationTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BatchOperationTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/BatchOperationTypeTest.php b/tests/unit/Table/Models/BatchOperationTypeTest.php index fcbf31341..a17961add 100644 --- a/tests/unit/Table/Models/BatchOperationTypeTest.php +++ b/tests/unit/Table/Models/BatchOperationTypeTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BatchOperationTypeTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/BatchOperationsTest.php b/tests/unit/Table/Models/BatchOperationsTest.php index 4fbed07cf..68bb68f94 100644 --- a/tests/unit/Table/Models/BatchOperationsTest.php +++ b/tests/unit/Table/Models/BatchOperationsTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BatchOperationsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/BatchResultTest.php b/tests/unit/Table/Models/BatchResultTest.php index afe3971c0..ef2cf97ae 100644 --- a/tests/unit/Table/Models/BatchResultTest.php +++ b/tests/unit/Table/Models/BatchResultTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BatchResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/DeleteEntityOptionsTest.php b/tests/unit/Table/Models/DeleteEntityOptionsTest.php index 4d68d1061..40bd6e96b 100644 --- a/tests/unit/Table/Models/DeleteEntityOptionsTest.php +++ b/tests/unit/Table/Models/DeleteEntityOptionsTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class DeleteEntityOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/EdmTypeTest.php b/tests/unit/Table/Models/EdmTypeTest.php index 1ee7f7e4f..21ae898db 100644 --- a/tests/unit/Table/Models/EdmTypeTest.php +++ b/tests/unit/Table/Models/EdmTypeTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class EdmTypeTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/EntityTest.php b/tests/unit/Table/Models/EntityTest.php index ce75f0d13..a13361ef4 100644 --- a/tests/unit/Table/Models/EntityTest.php +++ b/tests/unit/Table/Models/EntityTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class EntityTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/Filters/BinaryFilterTest.php b/tests/unit/Table/Models/Filters/BinaryFilterTest.php index f0787f902..c1f9cb739 100644 --- a/tests/unit/Table/Models/Filters/BinaryFilterTest.php +++ b/tests/unit/Table/Models/Filters/BinaryFilterTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class BinaryFilterTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/Filters/ConstantFilterTest.php b/tests/unit/Table/Models/Filters/ConstantFilterTest.php index c8b0f5c23..571a53a90 100644 --- a/tests/unit/Table/Models/Filters/ConstantFilterTest.php +++ b/tests/unit/Table/Models/Filters/ConstantFilterTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class ConstantFilterTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/Filters/FilterTest.php b/tests/unit/Table/Models/Filters/FilterTest.php index d61db0b0a..b03d8e96d 100644 --- a/tests/unit/Table/Models/Filters/FilterTest.php +++ b/tests/unit/Table/Models/Filters/FilterTest.php @@ -34,7 +34,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class FilterTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/Filters/PropertyNameFilterTest.php b/tests/unit/Table/Models/Filters/PropertyNameFilterTest.php index f984691a0..391dfb9e0 100644 --- a/tests/unit/Table/Models/Filters/PropertyNameFilterTest.php +++ b/tests/unit/Table/Models/Filters/PropertyNameFilterTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class PropertyNameFilterTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/Filters/QueryStringFilterTest.php b/tests/unit/Table/Models/Filters/QueryStringFilterTest.php index 9daa82fa8..625994eee 100644 --- a/tests/unit/Table/Models/Filters/QueryStringFilterTest.php +++ b/tests/unit/Table/Models/Filters/QueryStringFilterTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueryStringFilterTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/Filters/UnaryFilterTest.php b/tests/unit/Table/Models/Filters/UnaryFilterTest.php index 852b94b60..6c382a436 100644 --- a/tests/unit/Table/Models/Filters/UnaryFilterTest.php +++ b/tests/unit/Table/Models/Filters/UnaryFilterTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class UnaryFilterTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/GetEntityResultTest.php b/tests/unit/Table/Models/GetEntityResultTest.php index 67b5be5ae..c45521497 100644 --- a/tests/unit/Table/Models/GetEntityResultTest.php +++ b/tests/unit/Table/Models/GetEntityResultTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetEntityResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/GetTableResultTest.php b/tests/unit/Table/Models/GetTableResultTest.php index 7b2af697c..73b1a9a14 100644 --- a/tests/unit/Table/Models/GetTableResultTest.php +++ b/tests/unit/Table/Models/GetTableResultTest.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class GetTableResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/InsertEntityResultTest.php b/tests/unit/Table/Models/InsertEntityResultTest.php index 22d3177f0..0a6523f4f 100644 --- a/tests/unit/Table/Models/InsertEntityResultTest.php +++ b/tests/unit/Table/Models/InsertEntityResultTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class InsertEntityResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/PropertyTest.php b/tests/unit/Table/Models/PropertyTest.php index ffbcf9abc..28fceb059 100644 --- a/tests/unit/Table/Models/PropertyTest.php +++ b/tests/unit/Table/Models/PropertyTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class PropertyTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/QueryEntitiesOptionsTest.php b/tests/unit/Table/Models/QueryEntitiesOptionsTest.php index 4823d0834..c648a0ea6 100644 --- a/tests/unit/Table/Models/QueryEntitiesOptionsTest.php +++ b/tests/unit/Table/Models/QueryEntitiesOptionsTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueryEntitiesOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/QueryEntitiesResultTest.php b/tests/unit/Table/Models/QueryEntitiesResultTest.php index 0d34c429f..429470273 100644 --- a/tests/unit/Table/Models/QueryEntitiesResultTest.php +++ b/tests/unit/Table/Models/QueryEntitiesResultTest.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueryEntitiesResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/QueryTablesOptionsTest.php b/tests/unit/Table/Models/QueryTablesOptionsTest.php index b30dcb3ca..950d7ea93 100644 --- a/tests/unit/Table/Models/QueryTablesOptionsTest.php +++ b/tests/unit/Table/Models/QueryTablesOptionsTest.php @@ -36,7 +36,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueryTablesOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/QueryTablesResultTest.php b/tests/unit/Table/Models/QueryTablesResultTest.php index cdc799c38..baa2e262c 100644 --- a/tests/unit/Table/Models/QueryTablesResultTest.php +++ b/tests/unit/Table/Models/QueryTablesResultTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueryTablesResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/QueryTest.php b/tests/unit/Table/Models/QueryTest.php index 8e715e11d..7fd969582 100644 --- a/tests/unit/Table/Models/QueryTest.php +++ b/tests/unit/Table/Models/QueryTest.php @@ -35,7 +35,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class QueryTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/TableServiceOptionsTest.php b/tests/unit/Table/Models/TableServiceOptionsTest.php index d9b56667e..a537cfc3d 100644 --- a/tests/unit/Table/Models/TableServiceOptionsTest.php +++ b/tests/unit/Table/Models/TableServiceOptionsTest.php @@ -33,7 +33,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class TableServiceOptionsTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/Models/UpdateEntityResultTest.php b/tests/unit/Table/Models/UpdateEntityResultTest.php index fd34356fa..b6eb06d54 100644 --- a/tests/unit/Table/Models/UpdateEntityResultTest.php +++ b/tests/unit/Table/Models/UpdateEntityResultTest.php @@ -32,7 +32,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class UpdateEntityResultTest extends \PHPUnit_Framework_TestCase diff --git a/tests/unit/Table/TableRestProxyTest.php b/tests/unit/Table/TableRestProxyTest.php index 1bbbb95ad..8dbd86f27 100644 --- a/tests/unit/Table/TableRestProxyTest.php +++ b/tests/unit/Table/TableRestProxyTest.php @@ -49,7 +49,7 @@ * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE - * @version Release: 0.10.0 + * @version Release: 0.10.1 * @link https://github.com/azure/azure-storage-php */ class TableRestProxyTest extends TableServiceRestProxyTestBase