Skip to content

Commit 016a177

Browse files
committed
Merge branch 'release-v0.9.1' into release
2 parents a4c6fbc + baf770b commit 016a177

File tree

6 files changed

+24
-252
lines changed

6 files changed

+24
-252
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Unreleased changes
22

3-
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.9.0...main)
3+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.9.1...main)
4+
5+
# v0.9.1 (2021-04-19)
6+
7+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.9.0...v0.9.1)
8+
9+
* [#219](https://github.com/mozilla/glean.js/pull/219): BUGFIX: Fix path to ping entry point in package.json.
410

511
# v0.9.0 (2021-04-19)
612

glean/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.

glean/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@mozilla/glean",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "An implementation of the Glean SDK, a modern cross-platform telemetry client, for Javascript environments.",
55
"type": "module",
66
"exports": {
77
"./package.json": "./package.json",
88
"./webext": "./dist/webext/index/webext.js",
99
"./webext/private/metrics/*": "./dist/webext/core/metrics/types/*.js",
10-
"./webext/private/ping": "./dist/webext/core/pings/index.js",
10+
"./webext/private/ping": "./dist/webext/core/pings/ping_type.js",
1111
"./webext/plugins/*": "./dist/webext/plugins/*.js"
1212
},
1313
"typesVersions": {
@@ -16,7 +16,7 @@
1616
"./dist/webext/types/index/webext.d.ts"
1717
],
1818
"webext/private/ping": [
19-
"./dist/webext/types/core/pings/index.d.ts"
19+
"./dist/webext/types/core/pings/ping_type.d.ts"
2020
],
2121
"webext/private/metrics/*": [
2222
"./dist/webext/types/core/metrics/types/*"

glean/src/core/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const GLEAN_SCHEMA_VERSION = 1;
88
//
99
// PACKAGE_VERSION is defined as a global by webpack,
1010
// we need a default here for testing when the app is not build with webpack.
11-
export const GLEAN_VERSION = "0.9.0";
11+
export const GLEAN_VERSION = "0.9.1";
1212

1313
// The name of a "ping" that will include Glean ping_info metrics,
1414
// such as ping sequence numbers.

0 commit comments

Comments
 (0)