Skip to content

Commit 5bb0790

Browse files
committed
Merge branch 'release-v0.21.1' into release
2 parents e62e7e7 + f1fc1ef commit 5bb0790

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
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.21.0...main)
3+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.21.1...main)
4+
5+
# v0.21.1 (2021-09-30)
6+
7+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.21.0...v0.21.1)
8+
9+
* [#780](https://github.com/mozilla/glean.js/pull/780): Fix the publishing step for releases. The Qt-specific build should now publish correctly.
410

511
# v0.21.0 (2021-09-30)
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mozilla/glean",
3-
"version": "0.21.0",
3+
"version": "0.21.1",
44
"description": "An implementation of the Glean SDK, a modern cross-platform telemetry client, for JavaScript environments.",
55
"type": "module",
66
"sideEffects": "false",
@@ -66,7 +66,7 @@
6666
"build:docs": "rm -rf dist/docs && typedoc src/ --out dist/docs --tsconfig tsconfig/docs.json --theme minimal",
6767
"build:metrics-docs": "npm run cli -- translate src/metrics.yaml src/pings.yaml -o ../docs/reference/ --format markdown --allow-reserved",
6868
"publish:docs": "NODE_DEBUG=gh-pages gh-pages --dotfiles --message \"[skip ci] Updates\" --dist dist/docs",
69-
"prepublishOnly": "cp ../README.md ./README.md && run-s build:cli build:webext",
69+
"prepublishOnly": "cp ../README.md ./README.md && run-s build:cli build:lib build:types",
7070
"postpublish": "rm ./README.md",
7171
"cli": "node --loader=ts-node/esm src/cli.ts"
7272
},

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.21.0";
11+
export const GLEAN_VERSION = "0.21.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)