Skip to content

Commit f1dc4f7

Browse files
authored
Increment version for storage releases (Azure#14217)
* Increment package version after release of azure-storage-blob * Increment package version after release of azure-storage-file-share * Increment package version after release of azure-storage-queue * Increment package version after release of azure-storage-file-datalake
1 parent 0e329df commit f1dc4f7

File tree

14 files changed

+22
-10
lines changed

14 files changed

+22
-10
lines changed

sdk/storage/storage-blob/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release History
22

3+
## 12.5.1 (Unreleased)
4+
5+
36
## 12.5.0 (2021-03-10)
47

58
- Includes all features released in 12.5.0-beta.1.

sdk/storage/storage-blob/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@azure/storage-blob",
33
"sdk-type": "client",
4-
"version": "12.5.0",
4+
"version": "12.5.1",
55
"description": "Microsoft Azure Storage SDK for JavaScript - Blob",
66
"main": "./dist/index.js",
77
"module": "./dist-esm/storage-blob/src/index.js",

sdk/storage/storage-blob/src/utils/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT license.
33

4-
export const SDK_VERSION: string = "12.5.0";
4+
export const SDK_VERSION: string = "12.5.1";
55
export const SERVICE_VERSION: string = "2020-06-12";
66

77
export const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES: number = 256 * 1024 * 1024; // 256MB

sdk/storage/storage-file-datalake/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release History
22

3+
## 12.4.1 (Unreleased)
4+
5+
36
## 12.4.0 (2021-03-10)
47

58
- Includes all features released in 12.4.0-beta.1.

sdk/storage/storage-file-datalake/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@azure/storage-file-datalake",
3-
"version": "12.4.0",
3+
"version": "12.4.1",
44
"description": "Microsoft Azure Storage SDK for JavaScript - DataLake",
55
"sdk-type": "client",
66
"main": "./dist/index.js",

sdk/storage/storage-file-datalake/src/utils/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT license.
33

4-
export const SDK_VERSION: string = "12.4.0";
4+
export const SDK_VERSION: string = "12.4.1";
55
export const SERVICE_VERSION: string = "2020-06-12";
66

77
export const KB: number = 1024;

sdk/storage/storage-file-share/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release History
22

3+
## 12.5.1 (Unreleased)
4+
5+
36
## 12.5.0 (2021-03-10)
47

58
- Updated Azure Storage Service API version to 2020-06-12.

sdk/storage/storage-file-share/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@azure/storage-file-share",
33
"sdk-type": "client",
4-
"version": "12.5.0",
4+
"version": "12.5.1",
55
"description": "Microsoft Azure Storage SDK for JavaScript - File",
66
"main": "./dist/index.js",
77
"module": "./dist-esm/src/index.js",

sdk/storage/storage-file-share/src/generated/src/storageClientContext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import * as coreHttp from "@azure/core-http";
1212

1313
const packageName = "azure-storage-file-share";
14-
const packageVersion = "12.5.0";
14+
const packageVersion = "12.5.1";
1515

1616
export class StorageClientContext extends coreHttp.ServiceClient {
1717
version: string;

sdk/storage/storage-file-share/src/utils/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT license.
33

4-
export const SDK_VERSION: string = "12.5.0";
4+
export const SDK_VERSION: string = "12.5.1";
55
export const SERVICE_VERSION: string = "2020-06-12";
66

77
export const FILE_MAX_SIZE_BYTES: number = 4 * 1024 * 1024 * 1024 * 1024; // 4TB

0 commit comments

Comments
 (0)