diff --git a/.buildconfig.yml b/.buildconfig.yml index 6fce7cff03..c5c5657994 100644 --- a/.buildconfig.yml +++ b/.buildconfig.yml @@ -1,4 +1,4 @@ -libraryVersion: 21.1.0 +libraryVersion: 21.1.1 groupId: org.mozilla.telemetry projects: glean-core: diff --git a/CHANGELOG.md b/CHANGELOG.md index 6076110707..b21704d531 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Unreleased changes -[Full changelog](https://github.com/mozilla/glean/compare/v21.1.0...master) +[Full changelog](https://github.com/mozilla/glean/compare/v21.1.1...master) + +# v21.1.1 (2019-11-20) + +[Full changelog](https://github.com/mozilla/glean/compare/v21.1.0...v21.1.1) * Android: diff --git a/Cargo.lock b/Cargo.lock index b3fb26f591..35dbc1b642 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -297,7 +297,7 @@ dependencies = [ [[package]] name = "glean-core" -version = "21.1.0" +version = "21.1.1" 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 = "21.1.0" +version = "21.1.1" 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 21.1.0", + "glean-core 21.1.1", "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)", diff --git a/glean-core/Cargo.toml b/glean-core/Cargo.toml index 2b23953895..94f0bb960a 100644 --- a/glean-core/Cargo.toml +++ b/glean-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glean-core" -version = "21.1.0" +version = "21.1.1" authors = ["Jan-Erik Rediger ", "The Glean Team "] description = "A modern Telemetry library" repository = "https://github.com/mozilla/glean" diff --git a/glean-core/ffi/Cargo.toml b/glean-core/ffi/Cargo.toml index 200fd045f0..afad6b743b 100644 --- a/glean-core/ffi/Cargo.toml +++ b/glean-core/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glean-ffi" -version = "21.1.0" +version = "21.1.1" authors = ["Jan-Erik Rediger ", "The Glean Team "] 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 = "21.1.0" +version = "21.1.1" [target.'cfg(target_os = "android")'.dependencies] android_logger = { version = "0.8.5", default-features = false } diff --git a/gradle-plugin/src/main/groovy/mozilla/telemetry/glean-gradle-plugin/GleanGradlePlugin.groovy b/gradle-plugin/src/main/groovy/mozilla/telemetry/glean-gradle-plugin/GleanGradlePlugin.groovy index e25d4f0e34..c4ab7d88f3 100644 --- a/gradle-plugin/src/main/groovy/mozilla/telemetry/glean-gradle-plugin/GleanGradlePlugin.groovy +++ b/gradle-plugin/src/main/groovy/mozilla/telemetry/glean-gradle-plugin/GleanGradlePlugin.groovy @@ -367,7 +367,7 @@ subprocess.check_call([ } void apply(Project project) { - project.ext.glean_version = "21.1.0" + project.ext.glean_version = "21.1.1" File condaDir = setupPythonEnvironmentTasks(project) project.ext.set("gleanCondaDir", condaDir)