Skip to content

Commit df9d492

Browse files
author
Yoseph Maguire
authored
Iot-modelsrepository hotfix (Azure#15458)
1 parent 3fc41dc commit df9d492

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

sdk/iot/iot-modelsrepository/CHANGELOG.md

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

3+
## 1.0.0-beta.2 (2021-05-28)
4+
5+
With [#15455](https://github.com/Azure/azure-sdk-for-js/pull/15455), this is a hotfix for a bug released in the first beta where getModels fails on remote.
6+
37
## 1.0.0-beta.1 (2021-05-27)
48

59
With [#14863](https://github.com/Azure/azure-sdk-for-js/pull/14863), this is the first release of the @azure/iot-modelsrepository package.

sdk/iot/iot-modelsrepository/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@azure/iot-modelsrepository",
3-
"version": "1.0.0-beta.1",
3+
"version": "1.0.0-beta.2",
44
"description": "Device Model Repository Library with typescript type definitions for node.js and browser.",
55
"sdk-type": "client",
66
"main": "dist/index.js",

sdk/iot/iot-modelsrepository/src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { isNode } from "@azure/core-util";
55

66
const currentPlatform = isNode ? "node" : "browser";
77

8-
export const SDK_VERSION = "1.0.0-beta.1";
8+
export const SDK_VERSION = "1.0.0-beta.2";
99
export const DEFAULT_USER_AGENT = `azsdk-node-modelsrepository/${SDK_VERSION} (${currentPlatform})`;
1010
export const DEFAULT_REPOSITORY_LOCATION = "https://devicemodels.azure.com";
1111
export const DEFAULT_API_VERSION = "2021-02-11";

0 commit comments

Comments
 (0)