Skip to content

Commit

Permalink
change version to preview
Browse files Browse the repository at this point in the history
  • Loading branch information
Lin Jian committed Jun 11, 2020
1 parent 84ff52d commit 7c05af2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sdk/storage/storage-blob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 12.2.0 (2020.06)
## 12.2.0-preview.1 (2020.06)

- Supported quick query. Added a new API `BlockBlobClient.query()`.
- Added support for blob versioning.
Expand Down
4 changes: 2 additions & 2 deletions sdk/storage/storage-blob/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@azure/storage-blob",
"sdk-type": "client",
"version": "12.2.0",
"version": "12.2.0-preview.1",
"description": "Microsoft Azure Storage SDK for JavaScript - Blob",
"main": "./dist/index.js",
"module": "./dist-esm/storage-blob/src/index.js",
Expand Down Expand Up @@ -30,7 +30,7 @@
},
"scripts": {
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
"build:autorest": "autorest ./swagger/README.md --typescript --package-version=12.2.0 [email protected]/[email protected]",
"build:autorest": "autorest ./swagger/README.md --typescript --package-version=12.2.0-preview.1 [email protected]/[email protected]",
"build:es6": "tsc -p tsconfig.json",
"build:nodebrowser": "rollup -c 2>&1",
"build:samples": "npm run clean && npm run build:es6 && cross-env ONLY_NODE=true rollup -c 2>&1 && npm run build:prep-samples",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import * as coreHttp from "@azure/core-http";

const packageName = "azure-storage-blob";
const packageVersion = "12.2.0";
const packageVersion = "12.2.0-preview";

export class StorageClientContext extends coreHttp.ServiceClient {
url: string;
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-blob/src/utils/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

export const SDK_VERSION: string = "12.2.0";
export const SDK_VERSION: string = "12.2.0-preview";
export const SERVICE_VERSION: string = "2019-12-12";

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

0 comments on commit 7c05af2

Please sign in to comment.