Skip to content

Commit e665790

Browse files
committed
Bumped version to 0.27.0
1 parent bf03fb6 commit e665790

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.26"
159+
--option platform=qt --option version="0.27"
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.26.0...main)
3+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.27.0...main)
4+
5+
# v0.27.0 (2021-11-22)
6+
7+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.26.0...v0.27.0)
48

59
* [#981](https://github.com/mozilla/glean.js/pull/981): Update rate limits for ping submission from 15 pings/minute to 40 pings/minute.
610
* [#967](https://github.com/mozilla/glean.js/pull/967): **BREAKING CHANGE**: Remove `debug` option from Glean configuration option.

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.26.0",
3+
"version": "0.27.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.26.0";
11+
export const GLEAN_VERSION = "0.27.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.26
9-
import generated 0.26
8+
import org.mozilla.Glean 0.27
9+
import generated 0.27
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.26
5-
import generated 0.26
4+
import org.mozilla.Glean 0.27
5+
import generated 0.27
66

77
import App 1.0
88

0 commit comments

Comments
 (0)