Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

Commit

Permalink
Version and Changelog update
Browse files Browse the repository at this point in the history
  • Loading branch information
katmsft authored and vinjiang committed Mar 26, 2019
1 parent f729f60 commit 80b9cb4
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 11 deletions.
5 changes: 5 additions & 0 deletions azure-storage-blob/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2019.03 - version 1.3.0
* Fixed a bug where blob name '0' cannot be created.
* Documentation refinement.
* `ListContainer` now can have ETag more robustly fetched from response header.

2018.08 - version 1.2.0

* Updated Azure Storage API version from 2016-05-31 to 2017-04-17.
Expand Down
4 changes: 2 additions & 2 deletions azure-storage-blob/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "microsoft/azure-storage-blob",
"version": "1.2.0",
"version": "1.3.0",
"description": "This project provides a set of PHP client libraries that make it easy to access Microsoft Azure Storage Blob APIs.",
"keywords": [ "php", "azure", "storage", "sdk", "blob" ],
"license": "MIT",
Expand All @@ -12,7 +12,7 @@
],
"require": {
"php": ">=5.6.0",
"microsoft/azure-storage-common": "~1.2.0"
"microsoft/azure-storage-common": "~1.3.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion azure-storage-blob/src/Blob/Internal/BlobResources.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class BlobResources extends Resources
{
// @codingStandardsIgnoreStart

const BLOB_SDK_VERSION = '1.2.0';
const BLOB_SDK_VERSION = '1.3.0';
const STORAGE_API_LATEST_VERSION = '2017-04-17';

// Error messages
Expand Down
3 changes: 3 additions & 0 deletions azure-storage-common/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2019.03 - version 1.3.0
* Documentation refinement.

2018.08 - version 1.2.0

* Fixed a bug `generateCanonicalResource` returns an empty string if `$resource` starts with "/".
Expand Down
2 changes: 1 addition & 1 deletion azure-storage-common/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "microsoft/azure-storage-common",
"version": "1.2.0",
"version": "1.3.0",
"description": "This project provides a set of common code shared by Azure Storage Blob, Table, Queue and File PHP client libraries.",
"keywords": [ "php", "azure", "storage", "sdk", "common" ],
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion azure-storage-common/src/Common/Internal/Resources.php
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ class Resources
const DEFAULT_RETRY_INTERVAL = 1000;//Milliseconds

// Header values
const COMMON_SDK_VERSION = '1.2.0';
const COMMON_SDK_VERSION = '1.3.0';
const INT32_MAX = 2147483647;
const INT32_MIN = -2147483648;

Expand Down
4 changes: 4 additions & 0 deletions azure-storage-file/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2019.03 - version 1.2.0
* Fixed a bug where file name '0' cannot be created.
* Documentation refinement.

2018.04 - version 1.1.0

* MD files are modified for better readability and formatting.
Expand Down
4 changes: 2 additions & 2 deletions azure-storage-file/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "microsoft/azure-storage-file",
"version": "1.1.0",
"version": "1.2.0",
"description": "This project provides a set of PHP client libraries that make it easy to access Microsoft Azure Storage File APIs.",
"keywords": [ "php", "azure", "storage", "sdk", "file" ],
"license": "MIT",
Expand All @@ -12,7 +12,7 @@
],
"require": {
"php": ">=5.6.0",
"microsoft/azure-storage-common": "~1.1"
"microsoft/azure-storage-common": "~1.3"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion azure-storage-file/src/File/Internal/FileResources.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class FileResources extends Resources
{
// @codingStandardsIgnoreStart

const FILE_SDK_VERSION = '1.1.0';
const FILE_SDK_VERSION = '1.2.0';
const STORAGE_API_LATEST_VERSION = '2016-05-31';

// Error messages
Expand Down
3 changes: 3 additions & 0 deletions azure-storage-queue/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2019.03 - version 1.2.0
* Documentation refinement.

2018.08 - version 1.1.1

* Fixed a bug in documents that `getMessageId` method should return string instead of integer.
Expand Down
4 changes: 2 additions & 2 deletions azure-storage-queue/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "microsoft/azure-storage-queue",
"version": "1.1.1",
"version": "1.2.0",
"description": "This project provides a set of PHP client libraries that make it easy to access Microsoft Azure Storage Queue APIs.",
"keywords": [ "php", "azure", "storage", "sdk", "queue" ],
"license": "MIT",
Expand All @@ -12,7 +12,7 @@
],
"require": {
"php": ">=5.6.0",
"microsoft/azure-storage-common": "~1.2.0"
"microsoft/azure-storage-common": "~1.3.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion azure-storage-queue/src/Queue/Internal/QueueResources.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class QueueResources extends Resources
{
// @codingStandardsIgnoreStart

const QUEUE_SDK_VERSION = '1.1.1';
const QUEUE_SDK_VERSION = '1.2.0';
const STORAGE_API_LATEST_VERSION = '2016-05-31';

// Error messages
Expand Down

0 comments on commit 80b9cb4

Please sign in to comment.