This commit is contained in:
Michael Droettboom 2019-11-21 13:49:28 -05:00
Родитель 71b6a08b83
Коммит 83c3546b7b
6 изменённых файлов: 13 добавлений и 9 удалений

Просмотреть файл

@ -1,4 +1,4 @@
libraryVersion: 22.0.0-SNAPSHOT
libraryVersion: 21.2.0
groupId: org.mozilla.telemetry
projects:
glean-core:

Просмотреть файл

@ -1,6 +1,10 @@
# Unreleased changes
[Full changelog](https://github.com/mozilla/glean/compare/v21.1.1...master)
[Full changelog](https://github.com/mozilla/glean/compare/v21.2.0...master)
# v21.2.0 (2019-11-21)
[Full changelog](https://github.com/mozilla/glean/compare/v21.1.1...21.2.0)
* All platforms

6
Cargo.lock сгенерированный
Просмотреть файл

@ -297,7 +297,7 @@ dependencies = [
[[package]]
name = "glean-core"
version = "22.0.0-alpha.1"
version = "21.2.0"
dependencies = [
"bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
@ -320,12 +320,12 @@ dependencies = [
[[package]]
name = "glean-ffi"
version = "22.0.0-alpha.1"
version = "21.2.0"
dependencies = [
"android_logger 0.8.6 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
"ffi-support 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"glean-core 22.0.0-alpha.1",
"glean-core 21.2.0",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"uuid 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",

Просмотреть файл

@ -1,6 +1,6 @@
[package]
name = "glean-core"
version = "22.0.0-alpha.1"
version = "21.2.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"

Просмотреть файл

@ -1,6 +1,6 @@
[package]
name = "glean-ffi"
version = "22.0.0-alpha.1"
version = "21.2.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"
@ -34,7 +34,7 @@ uuid = { version = "0.8.1", features = ["v4"] }
[dependencies.glean-core]
path = ".."
version = "22.0.0-alpha.1"
version = "21.2.0"
[target.'cfg(target_os = "android")'.dependencies]
android_logger = { version = "0.8.5", default-features = false }

Просмотреть файл

@ -367,7 +367,7 @@ subprocess.check_call([
}
void apply(Project project) {
project.ext.glean_version = "22.0.0-SNAPSHOT"
project.ext.glean_version = "21.2.0"
File condaDir = setupPythonEnvironmentTasks(project)
project.ext.set("gleanCondaDir", condaDir)