зеркало из https://github.com/mozilla/glean.git
Bumped version to 44.0.0
This commit is contained in:
Родитель
28e8e80592
Коммит
dcd37c39bb
|
@ -1,4 +1,4 @@
|
|||
libraryVersion: 43.0.2
|
||||
libraryVersion: 44.0.0
|
||||
groupId: org.mozilla.telemetry
|
||||
projects:
|
||||
glean:
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
# Unreleased changes
|
||||
|
||||
[Full changelog](https://github.com/mozilla/glean/compare/v44.0.0...main)
|
||||
|
||||
# v44.0.0 (2022-02-09)
|
||||
|
||||
* General
|
||||
* BREAKING CHANGE: Updated `glean_parser` version to 5.0.1 ([#1852](https://github.com/mozilla/glean/pull/1852)).
|
||||
This update drops support for generating C# specific metrics API.
|
||||
|
@ -11,7 +15,7 @@
|
|||
* Python
|
||||
* BUGFIX: Datetime metrics now correctly record the local timezone ([#1953](https://github.com/mozilla/glean/pull/1953)).
|
||||
|
||||
[Full changelog](https://github.com/mozilla/glean/compare/v43.0.2...main)
|
||||
[Full changelog](https://github.com/mozilla/glean/compare/v43.0.2...v44.0.0)
|
||||
|
||||
# v43.0.2 (2022-01-17)
|
||||
|
||||
|
|
|
@ -232,7 +232,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "glean"
|
||||
version = "43.0.2"
|
||||
version = "44.0.0"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"crossbeam-channel",
|
||||
|
@ -261,7 +261,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "glean-core"
|
||||
version = "43.0.2"
|
||||
version = "44.0.0"
|
||||
dependencies = [
|
||||
"bincode",
|
||||
"chrono",
|
||||
|
@ -283,7 +283,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "glean-ffi"
|
||||
version = "43.0.2"
|
||||
version = "44.0.0"
|
||||
dependencies = [
|
||||
"android_logger",
|
||||
"env_logger",
|
||||
|
|
|
@ -3247,9 +3247,9 @@ THE SOFTWARE.
|
|||
|
||||
The following text applies to code linked from these dependencies:
|
||||
|
||||
* [glean 43.0.2]( https://github.com/mozilla/glean )
|
||||
* [glean-core 43.0.2]( https://github.com/mozilla/glean )
|
||||
* [glean-ffi 43.0.2]( https://github.com/mozilla/glean )
|
||||
* [glean 44.0.0]( https://github.com/mozilla/glean )
|
||||
* [glean-core 44.0.0]( https://github.com/mozilla/glean )
|
||||
* [glean-ffi 44.0.0]( https://github.com/mozilla/glean )
|
||||
* [zeitstempel 0.1.1]( https://github.com/badboy/zeitstempel )
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "glean-core"
|
||||
version = "43.0.2"
|
||||
version = "44.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 = "43.0.2"
|
||||
version = "44.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"
|
||||
|
@ -36,7 +36,7 @@ once_cell = "1.2.0"
|
|||
|
||||
[dependencies.glean-core]
|
||||
path = ".."
|
||||
version = "43.0.2"
|
||||
version = "44.0.0"
|
||||
|
||||
[target.'cfg(target_os = "android")'.dependencies]
|
||||
android_logger = { version = "0.10.0", default-features = false }
|
||||
|
|
|
@ -56,7 +56,7 @@ with (SRC_ROOT / "CHANGELOG.md").open() as history_file:
|
|||
history = history_file.read()
|
||||
|
||||
# glean version. Automatically updated by the bin/prepare_release.sh script
|
||||
version = "43.0.2"
|
||||
version = "44.0.0"
|
||||
|
||||
requirements = [
|
||||
"cffi>=1.13.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "glean"
|
||||
version = "43.0.2"
|
||||
version = "44.0.0"
|
||||
authors = ["Jan-Erik Rediger <jrediger@mozilla.com>", "The Glean Team <glean-team@mozilla.com>"]
|
||||
description = "Glean SDK Rust language bindings"
|
||||
repository = "https://github.com/mozilla/glean"
|
||||
|
@ -22,7 +22,7 @@ maintenance = { status = "actively-developed" }
|
|||
|
||||
[dependencies.glean-core]
|
||||
path = ".."
|
||||
version = "43.0.2"
|
||||
version = "44.0.0"
|
||||
|
||||
[dependencies]
|
||||
crossbeam-channel = "0.5"
|
||||
|
|
|
@ -508,7 +508,7 @@ except:
|
|||
void apply(Project project) {
|
||||
isOffline = project.gradle.startParameter.offline
|
||||
|
||||
project.ext.glean_version = "43.0.2"
|
||||
project.ext.glean_version = "44.0.0"
|
||||
|
||||
// Print the required glean_parser version to the console. This is
|
||||
// offline builds, and is mentioned in the documentation for offline
|
||||
|
|
Загрузка…
Ссылка в новой задаче