@microsoft/feature-management-applicationinsights-browser 2.1.0-preview.1 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  // Copyright (c) Microsoft Corporation.
2
2
  // Licensed under the MIT license.
3
- const VERSION = "2.1.0-preview.1";
3
+ const VERSION = "2.1.0";
4
4
 
5
5
  export { VERSION };
6
6
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sources":["../../src/version.ts"],"sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\nexport const VERSION = \"2.1.0-preview.1\";\n"],"names":[],"mappings":"AAAA;AACA;AAEO,MAAM,OAAO,GAAG;;;;"}
1
+ {"version":3,"file":"version.js","sources":["../../src/version.ts"],"sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\nexport const VERSION = \"2.1.0\";\n"],"names":[],"mappings":"AAAA;AACA;AAEO,MAAM,OAAO,GAAG;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/feature-management-applicationinsights-browser",
3
- "version": "2.1.0-preview.1",
3
+ "version": "2.1.0",
4
4
  "description": "Feature Management Application Insights Plugin for Browser provides a solution for sending feature flag evaluation events produced by the Feature Management library.",
5
5
  "main": "./dist/esm/index.js",
6
6
  "module": "./dist/esm/index.js",
@@ -26,7 +26,7 @@
26
26
  },
27
27
  "license": "MIT",
28
28
  "publishConfig": {
29
- "tag": "preview"
29
+ "tag": "latest"
30
30
  },
31
31
  "bugs": {
32
32
  "url": "https://github.com/microsoft/FeatureManagement-JavaScript/issues"
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "@microsoft/applicationinsights-web": "^3.3.2",
49
- "@microsoft/feature-management": "2.1.0-preview.1"
49
+ "@microsoft/feature-management": "2.1.0"
50
50
  }
51
51
  }
52
52
 
package/types/index.d.ts CHANGED
@@ -27,6 +27,6 @@ declare function trackEvent(client: ApplicationInsights, targetingId: string, ev
27
27
  */
28
28
  declare function createTargetingTelemetryInitializer(targetingContextAccessor: ITargetingContextAccessor): (item: ITelemetryItem) => void;
29
29
 
30
- declare const VERSION = "2.1.0-preview.1";
30
+ declare const VERSION = "2.1.0";
31
31
 
32
32
  export { VERSION, createTargetingTelemetryInitializer, createTelemetryPublisher, trackEvent };