This commit is contained in:
Alessio Placitelli 2020-07-22 10:04:28 +02:00
Родитель eb6c6a8e50
Коммит 93e3cce10e
8 изменённых файлов: 18 добавлений и 14 удалений

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

@ -1,4 +1,4 @@
libraryVersion: 31.4.1
libraryVersion: 31.5.0
groupId: org.mozilla.telemetry
projects:
glean:

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

@ -1,6 +1,10 @@
# Unreleased changes
[Full changelog](https://github.com/mozilla/glean/compare/v31.4.1...main)
[Full changelog](https://github.com/mozilla/glean/compare/v31.5.0...main)
# v31.5.0 (2020-07-22)
[Full changelog](https://github.com/mozilla/glean/compare/v31.4.1...v31.5.0)
* General
* Implement ping tagging (i.e. the `X-Source-Tags` header) ([#1074](https://github.com/mozilla/glean/pull/1074)). Note that this is not yet implemented for iOS.

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

@ -46,7 +46,7 @@ name = "benchmark"
version = "0.1.0"
dependencies = [
"criterion 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"glean-core 31.4.1",
"glean-core 31.5.0",
"tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -312,7 +312,7 @@ dependencies = [
[[package]]
name = "glean-core"
version = "31.4.1"
version = "31.5.0"
dependencies = [
"bincode 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
@ -332,12 +332,12 @@ dependencies = [
[[package]]
name = "glean-ffi"
version = "31.4.1"
version = "31.5.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.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"glean-core 31.4.1",
"glean-core 31.5.0",
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"once_cell 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)",
@ -349,7 +349,7 @@ name = "glean-preview"
version = "0.0.5"
dependencies = [
"env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
"glean-core 31.4.1",
"glean-core 31.5.0",
"jsonschema-valid 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"once_cell 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",

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

@ -2821,8 +2821,8 @@ THE SOFTWARE.
The following text applies to code linked from these dependencies:
* [benchmark 0.1.0]( https://crates.io/crates/benchmark )
* [glean-core 31.4.1]( https://github.com/mozilla/glean )
* [glean-ffi 31.4.1]( https://github.com/mozilla/glean )
* [glean-core 31.5.0]( https://github.com/mozilla/glean )
* [glean-ffi 31.5.0]( https://github.com/mozilla/glean )
* [glean-preview 0.0.5]( https://github.com/mozilla/glean )

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

@ -1,6 +1,6 @@
[package]
name = "glean-core"
version = "31.4.1"
version = "31.5.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 = "31.4.1"
version = "31.5.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"
@ -35,7 +35,7 @@ once_cell = "1.2.0"
[dependencies.glean-core]
path = ".."
version = "31.4.1"
version = "31.5.0"
[target.'cfg(target_os = "android")'.dependencies]
android_logger = { version = "0.8.6", default-features = false }

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

@ -23,7 +23,7 @@ maintenance = { status = "actively-developed" }
[dependencies.glean-core]
path = ".."
version = "31.4.1"
version = "31.5.0"
[dependencies]
once_cell = "1.2.0"

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

@ -374,7 +374,7 @@ except:
}
void apply(Project project) {
project.ext.glean_version = "31.4.1"
project.ext.glean_version = "31.5.0"
File condaDir = setupPythonEnvironmentTasks(project)
project.ext.set("gleanCondaDir", condaDir)