Skip to content

Commit e9d1bc2

Browse files
committed
Bumped version to 0.20.0
1 parent 2ccbbd4 commit e9d1bc2

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-8
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
source venv/bin/activate
153153
pip install -r requirements.txt
154154
glean_parser translate metrics.yaml pings.yaml -f javascript -o generated \
155-
--option platform=qt --option version="0.19"
155+
--option platform=qt --option version="0.20"
156156
157157
sudo apt-get install xvfb
158158
xvfb-run python main.py &> qml.log &

CHANGELOG.md

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

3-
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.19.0...main)
3+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.20.0...main)
4+
5+
# v0.20.0 (2021-09-17)
6+
7+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.19.0...v0.20.0)
48

59
* [#696](https://github.com/mozilla/glean.js/pull/696): Expose Node.js entry point `@mozilla/glean/node`.
610
* [#695](https://github.com/mozilla/glean.js/pull/695): Implement PlatformInfo module for the Node.js platform.

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mozilla/glean",
3-
"version": "0.19.0",
3+
"version": "0.20.0",
44
"description": "An implementation of the Glean SDK, a modern cross-platform telemetry client, for JavaScript environments.",
55
"type": "module",
66
"sideEffects": "false",

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.19.0";
11+
export const GLEAN_VERSION = "0.20.0";
1212

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

samples/qt-qml-app/main.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import QtQuick 2.0
66
import QtQuick.Controls 2.0
77
import QtGraphicalEffects 1.15
88

9-
import org.mozilla.Glean 0.19;
10-
import generated 0.19;
9+
import org.mozilla.Glean 0.20;
10+
import generated 0.20;
1111

1212
Rectangle {
1313
id: screen

0 commit comments

Comments
 (0)