Skip to content

Commit c8daf6a

Browse files
committed
Bumped version to 0.31.0
1 parent 335fb0b commit c8daf6a

File tree

7 files changed

+14
-10
lines changed

7 files changed

+14
-10
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
pip install -r requirements.txt
157157
glean_parser translate src/App/metrics.yaml src/App/pings.yaml \
158158
-f javascript -o src/App/generated \
159-
--option platform=qt --option version="0.30"
159+
--option platform=qt --option version="0.31"
160160
- run:
161161
name: Run Qt sample tests
162162
command: |

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.30.0...main)
3+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.31.0...main)
4+
5+
# v0.31.0 (2022-01-25)
6+
7+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.30.0...v0.31.0)
48

59
* [#1065](https://github.com/mozilla/glean.js/pull/1065): Delete minimal amount of data when invalid data is found while collecting ping.
610
* Previous behaviour was to delete the whole ping when invalid data was found on the database,

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.30.0",
3+
"version": "0.31.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.30.0";
11+
export const GLEAN_VERSION = "0.31.0";
1212

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

samples/qt/src/App/App.qml

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

8-
import org.mozilla.Glean 0.30
9-
import generated 0.30
8+
import org.mozilla.Glean 0.31
9+
import generated 0.31
1010

1111
Rectangle {
1212
id: screen

samples/qt/src/Tests/tst_maintests.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import QtQuick 2.0
22
import QtTest 1.0
33

4-
import org.mozilla.Glean 0.30
5-
import generated 0.30
4+
import org.mozilla.Glean 0.31
5+
import generated 0.31
66

77
import App 1.0
88

0 commit comments

Comments
 (0)