Skip to content

Commit

Permalink
Release version 22.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
badboy committed Dec 5, 2019
1 parent 5f850d1 commit ba71ffe
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .buildconfig.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
libraryVersion: 21.3.0
libraryVersion: 22.0.0
groupId: org.mozilla.telemetry
projects:
glean:
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Unreleased changes

[Full changelog](https://github.com/mozilla/glean/compare/v21.3.0...master)
[Full changelog](https://github.com/mozilla/glean/compare/v22.0.0...master)

# v22.0.0 (2019-12-05)

[Full changelog](https://github.com/mozilla/glean/compare/v21.3.0...22.0.0)

* Add option to defer ping lifetime metric persistence ([#530](https://github.com/mozilla/glean/pull/530))
* Add a crate for the nice control API ([#542](https://github.com/mozilla/glean/pull/542))
* Pending `deletion_request` pings are resent on start ([#545](https://github.com/mozilla/glean/pull/545))

# v21.3.0 (2019-12-03)

Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion glean-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glean-core"
version = "21.3.0"
version = "22.0.0"
authors = ["Jan-Erik Rediger <jrediger@mozilla.com>", "The Glean Team <glean-team@mozilla.com>"]
description = "A modern Telemetry library"
repository = "https://github.com/mozilla/glean"
Expand Down
4 changes: 2 additions & 2 deletions glean-core/ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glean-ffi"
version = "21.3.0"
version = "22.0.0"
authors = ["Jan-Erik Rediger <jrediger@mozilla.com>", "The Glean Team <glean-team@mozilla.com>"]
description = "FFI layer for Glean, a modern Telemetry library"
repository = "https://github.com/mozilla/glean"
Expand Down Expand Up @@ -34,7 +34,7 @@ uuid = { version = "0.8.1", features = ["v4"] }

[dependencies.glean-core]
path = ".."
version = "21.3.0"
version = "22.0.0"

[target.'cfg(target_os = "android")'.dependencies]
android_logger = { version = "0.8.5", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions glean-core/preview/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ maintenance = { status = "actively-developed" }

[dependencies.glean-ffi]
path = "../ffi"
version = "21.3.0"
version = "22.0.0"

[dependencies.glean-core]
path = ".."
version = "21.3.0"
version = "22.0.0"

[dependencies]
ffi-support = "0.3.5"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ subprocess.check_call([
}

void apply(Project project) {
project.ext.glean_version = "21.3.0"
project.ext.glean_version = "22.0.0"

File condaDir = setupPythonEnvironmentTasks(project)
project.ext.set("gleanCondaDir", condaDir)
Expand Down

0 comments on commit ba71ffe

Please sign in to comment.