Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge back release v61.2.0 #2970

Merged
merged 1 commit into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .buildconfig.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
libraryVersion: 61.1.0
libraryVersion: 61.2.0
groupId: org.mozilla.telemetry
projects:
glean:
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions DEPENDENCIES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 )

```
Expand Down
2 changes: 1 addition & 1 deletion glean-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glean-core"
version = "61.1.0"
version = "61.2.0"
authors = ["Jan-Erik Rediger <[email protected]>", "The Glean Team <[email protected]>"]
description = "A modern Telemetry library"
repository = "https://github.com/mozilla/glean"
Expand Down
4 changes: 2 additions & 2 deletions glean-core/rlb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glean"
version = "61.1.0"
version = "61.2.0"
authors = ["Jan-Erik Rediger <[email protected]>", "The Glean Team <[email protected]>"]
description = "Glean SDK Rust language bindings"
repository = "https://github.com/mozilla/glean"
Expand All @@ -23,7 +23,7 @@ maintenance = { status = "actively-developed" }

[dependencies.glean-core]
path = ".."
version = "61.1.0"
version = "61.2.0"

[dependencies]
inherent = "1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading