Skip to content

Commit

Permalink
Make v21.0.0 release (#487)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdboom authored Nov 18, 2019
1 parent 120ec63 commit f353f89
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 12 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.0.0-SNAPSHOT
libraryVersion: 21.0.0
groupId: org.mozilla.telemetry
projects:
glean-core:
Expand Down
18 changes: 14 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
# Unreleased changes

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

* The `GleanTimerId` can now be accessed in Java and is no longer a `typealias`.
* Bumped `glean_parser` to version 1.11.0.
# v21.0.0 (2019-11-18)

[Full changelog](https://github.com/mozilla/glean/compare/v20.2.0...v21.0.0)

* Android:

* The `GleanTimerId` can now be accessed in Java and is no longer a `typealias`.

* Fixed a bug where the metrics ping was getting scheduled twice on startup.
* All platforms

* Bumped `glean_parser` to version 1.11.0.

# v20.2.0 (2019-11-11)

[Full changelog](https://github.com/mozilla/glean/compare/v20.0.0...v20.1.0)
[Full changelog](https://github.com/mozilla/glean/compare/v20.1.0...v20.2.0)

* In earlier 20.x.x releases, the version of glean-ffi was incorrectly built
against the wrong version of glean-core.
Expand Down
6 changes: 3 additions & 3 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.0.0-alpha.1"
version = "21.0.0"
authors = ["Jan-Erik Rediger <[email protected]>", "The Glean Team <[email protected]>"]
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.0.0-alpha.1"
version = "21.0.0"
authors = ["Jan-Erik Rediger <[email protected]>", "The Glean Team <[email protected]>"]
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.0.0-alpha.1"
version = "21.0.0"

[target.'cfg(target_os = "android")'.dependencies]
android_logger = { version = "0.8.5", default-features = false }
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.0.0-SNAPSHOT"
project.ext.glean_version = "21.0.0"

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

0 comments on commit f353f89

Please sign in to comment.