This commit is contained in:
Michael Droettboom 2019-11-11 08:43:54 -05:00 коммит произвёл GitHub
Родитель 5029e382d5
Коммит 3b0d442400
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
6 изменённых файлов: 16 добавлений и 9 удалений

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

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

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

@ -1,9 +1,16 @@
# Unreleased changes
[Full changelog](https://github.com/mozilla/glean/compare/v19.1.0...master)
[Full changelog](https://github.com/mozilla/glean/compare/v20.0.0...master)
# v20.0.0 (2019-11-11)
[Full changelog](https://github.com/mozilla/glean/compare/v19.1.0...v20.0.0)
* Glean users should now use a Gradle plugin rather than a Gradle script. (#421)
See [integrating with the build system docs](https://mozilla.github.io/glean/book/user/adding-glean-to-your-project.html#integrating-with-the-build-system) for more information.
* In Kotlin, metrics that can record errors now have a new testing method,
`testGetNumRecordedErrors`.
`testGetNumRecordedErrors`. (#401)
# v19.1.0 (2019-10-29)

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

@ -300,7 +300,7 @@ dependencies = [
[[package]]
name = "glean-core"
version = "20.0.0-alpha.0"
version = "20.0.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)",
@ -323,12 +323,12 @@ dependencies = [
[[package]]
name = "glean-ffi"
version = "20.0.0-alpha.0"
version = "20.0.0"
dependencies = [
"android_logger 0.8.5 (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 20.0.0-alpha.0",
"glean-core 20.0.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)",

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

@ -21,7 +21,7 @@ These are the steps needed to cut a new release from latest master.
2. Add a new `# Unreleased Changes` on top
2. Bump the versions
* Rust crates: Bump `version` in [`glean-core/Cargo.toml`](https://github.com/mozilla/glean/blob/master/glean-core/Cargo.toml) and [`glean-core/Cargo.toml`](https://github.com/mozilla/glean/blob/master/glean-core/ffi/Cargo.toml).
* Rust crates: Bump `version` in [`glean-core/Cargo.toml`](https://github.com/mozilla/glean/blob/master/glean-core/Cargo.toml) and [`glean-core/ffi/Cargo.toml`](https://github.com/mozilla/glean/blob/master/glean-core/ffi/Cargo.toml).
* Kotlin package: Bump `libraryVersion` in the top-level [.buildconfig.yml](https://github.com/mozilla/glean/blob/master/.buildconfig.yml) file.
* Be sure you're following semver, and if in doubt, ask.
3. Land the commits that perform the steps above. This takes a PR, typically, because of branch protection on master.

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

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

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

@ -1,6 +1,6 @@
[package]
name = "glean-ffi"
version = "20.0.0-alpha.0"
version = "20.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"