Skip to content

Commit 0fbfebd

Browse files
Merge pull request #122 from microsoft/main
Merge main to preview
2 parents fa707d8 + 80abf6b commit 0fbfebd

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

examples/express-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"start": "node server.mjs"
44
},
55
"dependencies": {
6-
"@microsoft/feature-management": "2.1.0-preview.1",
6+
"@microsoft/feature-management": "2.1.0",
77
"express": "^4.21.2"
88
}
99
}

examples/quote-of-the-day/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
},
88
"dependencies": {
99
"@azure/app-configuration-provider": "latest",
10-
"@microsoft/feature-management": "2.1.0-preview.1",
11-
"@microsoft/feature-management-applicationinsights-node": "2.1.0-preview.1",
10+
"@microsoft/feature-management": "2.1.0",
11+
"@microsoft/feature-management-applicationinsights-node": "2.1.0",
1212
"applicationinsights": "^2.9.6",
1313
"dotenv": "^16.5.0",
1414
"express": "^4.19.2"

src/feature-management-applicationinsights-browser/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/feature-management-applicationinsights-browser",
3-
"version": "2.1.0-preview.1",
3+
"version": "2.1.0",
44
"description": "Feature Management Application Insights Plugin for Browser provides a solution for sending feature flag evaluation events produced by the Feature Management library.",
55
"main": "./dist/esm/index.js",
66
"module": "./dist/esm/index.js",
@@ -26,7 +26,7 @@
2626
},
2727
"license": "MIT",
2828
"publishConfig": {
29-
"tag": "preview"
29+
"tag": "latest"
3030
},
3131
"bugs": {
3232
"url": "https://github.com/microsoft/FeatureManagement-JavaScript/issues"
@@ -46,7 +46,7 @@
4646
},
4747
"dependencies": {
4848
"@microsoft/applicationinsights-web": "^3.3.2",
49-
"@microsoft/feature-management": "2.1.0-preview.1"
49+
"@microsoft/feature-management": "2.1.0"
5050
}
5151
}
5252

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

4-
export const VERSION = "2.1.0-preview.1";
4+
export const VERSION = "2.1.0";

src/feature-management-applicationinsights-node/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/feature-management-applicationinsights-node",
3-
"version": "2.1.0-preview.1",
3+
"version": "2.1.0",
44
"description": "Feature Management Application Insights Plugin for Node.js provides a solution for sending feature flag evaluation events produced by the Feature Management library.",
55
"main": "./dist/commonjs/index.js",
66
"module": "./dist/esm/index.js",
@@ -25,7 +25,7 @@
2525
},
2626
"license": "MIT",
2727
"publishConfig": {
28-
"tag": "preview"
28+
"tag": "latest"
2929
},
3030
"bugs": {
3131
"url": "https://github.com/microsoft/FeatureManagement-JavaScript/issues"
@@ -45,7 +45,7 @@
4545
},
4646
"dependencies": {
4747
"applicationinsights": "^2.9.6",
48-
"@microsoft/feature-management": "2.1.0-preview.1"
48+
"@microsoft/feature-management": "2.1.0"
4949
}
5050
}
5151

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

4-
export const VERSION = "2.1.0-preview.1";
4+
export const VERSION = "2.1.0";

src/feature-management/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/feature-management/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/feature-management",
3-
"version": "2.1.0-preview.1",
3+
"version": "2.1.0",
44
"description": "Feature Management is a library for enabling/disabling features at runtime. Developers can use feature flags in simple use cases like conditional statement to more advanced scenarios like conditionally adding routes.",
55
"main": "./dist/commonjs/index.js",
66
"module": "./dist/esm/index.js",
@@ -27,7 +27,7 @@
2727
},
2828
"license": "MIT",
2929
"publishConfig": {
30-
"tag": "preview"
30+
"tag": "latest"
3131
},
3232
"bugs": {
3333
"url": "https://github.com/microsoft/FeatureManagement-JavaScript/issues"

src/feature-management/src/version.ts

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

4-
export const VERSION = "2.1.0-preview.1";
4+
export const VERSION = "2.1.0";
55
export const EVALUATION_EVENT_VERSION = "1.0.0";

0 commit comments

Comments
 (0)