diff --git a/.buildconfig.yml b/.buildconfig.yml index 2aa74abad2..7f8420851a 100644 --- a/.buildconfig.yml +++ b/.buildconfig.yml @@ -1,4 +1,4 @@ -libraryVersion: 61.1.0 +libraryVersion: 61.2.0 groupId: org.mozilla.telemetry projects: glean: diff --git a/CHANGELOG.md b/CHANGELOG.md index ed6fef6ad0..f1fb892d20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Unreleased changes -[Full changelog](https://github.com/mozilla/glean/compare/v61.1.0...main) +[Full changelog](https://github.com/mozilla/glean/compare/v61.2.0...main) + +# v61.2.0 (2024-10-07) + +[Full changelog](https://github.com/mozilla/glean/compare/v61.1.0...v61.2.0) * Kotlin * Accept a ping schedule map on initialize ([#2967](https://github.com/mozilla/glean/pull/2967)) diff --git a/Cargo.lock b/Cargo.lock index 8387a4fc7e..ac3f0aa302 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -318,7 +318,7 @@ dependencies = [ [[package]] name = "glean" -version = "61.1.0" +version = "61.2.0" dependencies = [ "crossbeam-channel", "env_logger", @@ -359,7 +359,7 @@ dependencies = [ [[package]] name = "glean-core" -version = "61.1.0" +version = "61.2.0" dependencies = [ "android_logger", "bincode", diff --git a/DEPENDENCIES.md b/DEPENDENCIES.md index e28136dcf7..ca4be60292 100644 --- a/DEPENDENCIES.md +++ b/DEPENDENCIES.md @@ -4948,9 +4948,9 @@ SOFTWARE. The following text applies to code linked from these dependencies: -* [glean-core 61.1.0]( https://github.com/mozilla/glean ) +* [glean-core 61.2.0]( https://github.com/mozilla/glean ) * [glean-build 15.0.1]( https://github.com/mozilla/glean ) -* [glean 61.1.0]( https://github.com/mozilla/glean ) +* [glean 61.2.0]( https://github.com/mozilla/glean ) * [zeitstempel 0.1.1]( https://github.com/badboy/zeitstempel ) ``` diff --git a/glean-core/Cargo.toml b/glean-core/Cargo.toml index 8d2f551f26..1b46816bb0 100644 --- a/glean-core/Cargo.toml +++ b/glean-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glean-core" -version = "61.1.0" +version = "61.2.0" authors = ["Jan-Erik Rediger ", "The Glean Team "] description = "A modern Telemetry library" repository = "https://github.com/mozilla/glean" diff --git a/glean-core/rlb/Cargo.toml b/glean-core/rlb/Cargo.toml index 060a8eaf07..29dbd7470c 100644 --- a/glean-core/rlb/Cargo.toml +++ b/glean-core/rlb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glean" -version = "61.1.0" +version = "61.2.0" authors = ["Jan-Erik Rediger ", "The Glean Team "] description = "Glean SDK Rust language bindings" repository = "https://github.com/mozilla/glean" @@ -23,7 +23,7 @@ maintenance = { status = "actively-developed" } [dependencies.glean-core] path = ".." -version = "61.1.0" +version = "61.2.0" [dependencies] inherent = "1" 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 9bf3ba2563..ec202e9970 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 @@ -552,7 +552,7 @@ except: void apply(Project project) { isOffline = project.gradle.startParameter.offline - project.ext.glean_version = "61.1.0" + project.ext.glean_version = "61.2.0" def parserVersion = gleanParserVersion(project) // Print the required glean_parser version to the console. This is diff --git a/pyproject.toml b/pyproject.toml index 8c782dc672..b4d5437111 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "glean-sdk" -version = "61.1.0" +version = "61.2.0" requires-python = ">=3.8" classifiers = [ "Intended Audience :: Developers",