Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increment version for monitor releases #15621

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions sdk/monitor/monitor-query/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release History

## 1.0.0-beta.2 (Unreleased)


## 1.0.0-beta.1 (2021-06-08)

- Initial release of the monitor-query library, allowing you to query Log Analytics Workspaces
Expand Down
2 changes: 1 addition & 1 deletion sdk/monitor/monitor-query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@azure/monitor-query",
"version": "1.0.0-beta.1",
"version": "1.0.0-beta.2",
"description": "An isomorphic client library to query Azure Monitor logs and metrics.",
"sdk-type": "client",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion sdk/monitor/monitor-query/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
/**
* @internal
*/
export const SDK_VERSION: string = "1.0.0-beta.1";
export const SDK_VERSION: string = "1.0.0-beta.2";
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import * as coreHttp from "@azure/core-http";
import { AzureLogAnalyticsOptionalParams } from "./models";

const packageName = "monitor-log-query";
const packageVersion = "1.0.0-beta.1";
const packageVersion = "1.0.0-beta.2";

/** @hidden */
export class AzureLogAnalyticsContext extends coreHttp.ServiceClient {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
} from "./models";

const packageName = "monitor-metrics";
const packageVersion = "1.0.0-beta.1";
const packageVersion = "1.0.0-beta.2";

/** @hidden */
export class MonitorManagementClientContext extends coreHttp.ServiceClient {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
} from "./models";

const packageName = "monitor-metrics-definitions";
const packageVersion = "1.0.0-beta.1";
const packageVersion = "1.0.0-beta.2";

/** @hidden */
export class MetricsDefinitionsClientContext extends coreHttp.ServiceClient {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
} from "./models";

const packageName = "monitor-metrics-namespaces";
const packageVersion = "1.0.0-beta.1";
const packageVersion = "1.0.0-beta.2";

/** @hidden */
export class MetricsNamespacesClientContext extends coreHttp.ServiceClient {
Expand Down