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 servicebus releases #8700

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/servicebus/service-bus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release History

## 7.0.0-preview.3 (Unreleased)


## 7.0.0-preview.2 (2020-05-05)

- Fixes reconnection issues by creating a new connection object rather than re-using the existing one.
Expand Down
10 changes: 8 additions & 2 deletions sdk/servicebus/service-bus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@
"name": "@azure/service-bus",
"sdk-type": "client",
"author": "Microsoft Corporation",
"version": "7.0.0-preview.2",
"version": "7.0.0-preview.3",
"license": "MIT",
"description": "Azure Service Bus SDK for Node.js",
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/servicebus/service-bus",
"repository": "github:Azure/azure-sdk-for-js",
"keywords": ["azure", "cloud", "service bus", "AMQP", "Azure"],
"keywords": [
"azure",
"cloud",
"service bus",
"AMQP",
"Azure"
],
"bugs": {
"url": "https://github.com/Azure/azure-sdk-for-js/issues"
},
Expand Down
2 changes: 1 addition & 1 deletion sdk/servicebus/service-bus/src/util/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/
export const packageJsonInfo = {
name: "@azure/service-bus",
version: "7.0.0-preview.2"
version: "7.0.0-preview.3"
};

/**
Expand Down