This commit is contained in:
Jan-Erik Rediger 2022-04-07 13:18:20 +02:00
Родитель 52eb50c97f
Коммит f55c18b01e
9 изменённых файлов: 22 добавлений и 18 удалений

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

@ -1,4 +1,4 @@
libraryVersion: 44.0.0
libraryVersion: 44.1.0
groupId: org.mozilla.telemetry
projects:
glean:

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

@ -1,6 +1,10 @@
# Unreleased changes
[Full changelog](https://github.com/mozilla/glean/compare/v44.0.0...main)
[Full changelog](https://github.com/mozilla/glean/compare/v44.1.0...main)
# v44.1.0 (2022-04-06)
[Full changelog](https://github.com/mozilla/glean/compare/v44.0.0...v44.1.0)
* Android
* The `glean-native-forUnitTests` now ships with separate libraries for macOS x86_64 and macOS aarch64 ([#1967](https://github.com/mozilla/glean/pull/1967))

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

@ -232,7 +232,7 @@ dependencies = [
[[package]]
name = "glean"
version = "44.0.0"
version = "44.1.0"
dependencies = [
"chrono",
"crossbeam-channel",
@ -261,7 +261,7 @@ dependencies = [
[[package]]
name = "glean-core"
version = "44.0.0"
version = "44.1.0"
dependencies = [
"bincode",
"chrono",
@ -283,7 +283,7 @@ dependencies = [
[[package]]
name = "glean-ffi"
version = "44.0.0"
version = "44.1.0"
dependencies = [
"android_logger",
"env_logger",

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

@ -655,7 +655,7 @@ The following text applies to code linked from these dependencies:
* [bitflags 1.2.1]( https://github.com/bitflags/bitflags )
* [cfg-if 0.1.10]( https://github.com/alexcrichton/cfg-if )
* [cfg-if 1.0.0]( https://github.com/alexcrichton/cfg-if )
* [crossbeam-channel 0.5.2]( https://github.com/crossbeam-rs/crossbeam )
* [crossbeam-channel 0.5.4]( https://github.com/crossbeam-rs/crossbeam )
* [crossbeam-utils 0.8.0]( https://github.com/crossbeam-rs/crossbeam )
* [env_logger 0.8.4]( https://github.com/env-logger-rs/env_logger/ )
* [ffi-support 0.4.4]( https://github.com/mozilla/ffi-support )
@ -670,7 +670,7 @@ The following text applies to code linked from these dependencies:
* [num-integer 0.1.44]( https://github.com/rust-num/num-integer )
* [num-traits 0.2.14]( https://github.com/rust-num/num-traits )
* [num_cpus 1.13.0]( https://github.com/seanmonstar/num_cpus )
* [once_cell 1.8.0]( https://github.com/matklad/once_cell )
* [once_cell 1.10.0]( https://github.com/matklad/once_cell )
* [paste 0.1.18]( https://github.com/dtolnay/paste )
* [paste-impl 0.1.18]( https://github.com/dtolnay/paste )
* [percent-encoding 2.1.0]( https://github.com/servo/rust-url/ )
@ -2064,7 +2064,7 @@ limitations under the License.
The following text applies to code linked from these dependencies:
* [log 0.4.14]( https://github.com/rust-lang/log )
* [log 0.4.16]( https://github.com/rust-lang/log )
* [uuid 0.8.2]( https://github.com/uuid-rs/uuid )
@ -3247,9 +3247,9 @@ THE SOFTWARE.
The following text applies to code linked from these dependencies:
* [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 )
* [glean 44.1.0]( https://github.com/mozilla/glean )
* [glean-core 44.1.0]( https://github.com/mozilla/glean )
* [glean-ffi 44.1.0]( https://github.com/mozilla/glean )
* [zeitstempel 0.1.1]( https://github.com/badboy/zeitstempel )

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

@ -1,6 +1,6 @@
[package]
name = "glean-core"
version = "44.0.0"
version = "44.1.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 = "44.0.0"
version = "44.1.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 = "44.0.0"
version = "44.1.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 = "44.0.0"
version = "44.1.0"
requirements = [
"cffi>=1.13.0",

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

@ -1,6 +1,6 @@
[package]
name = "glean"
version = "44.0.0"
version = "44.1.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 = "44.0.0"
version = "44.1.0"
[dependencies]
crossbeam-channel = "0.5"

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

@ -508,7 +508,7 @@ except:
void apply(Project project) {
isOffline = project.gradle.startParameter.offline
project.ext.glean_version = "44.0.0"
project.ext.glean_version = "44.1.0"
// Print the required glean_parser version to the console. This is
// offline builds, and is mentioned in the documentation for offline