From aa006f6ca640c6ecbd102c996fc142e25ff13a5d Mon Sep 17 00:00:00 2001 From: Jan-Erik Rediger Date: Mon, 2 Sep 2024 12:54:25 +0200 Subject: [PATCH] Update to glean-parser 15.0.1 --- Cargo.lock | 2 +- glean-core/Cargo.toml | 2 +- glean-core/build/Cargo.toml | 2 +- glean-core/build/src/lib.rs | 2 +- glean-core/python/glean/__init__.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8dca9cb385..af092b9506 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -336,7 +336,7 @@ dependencies = [ [[package]] name = "glean-build" -version = "15.0.0" +version = "15.0.1" dependencies = [ "tempfile", "xshell-venv", diff --git a/glean-core/Cargo.toml b/glean-core/Cargo.toml index 101e187c63..a1369a3b31 100644 --- a/glean-core/Cargo.toml +++ b/glean-core/Cargo.toml @@ -21,7 +21,7 @@ include = [ rust-version = "1.76" [package.metadata.glean] -glean-parser = "15.0.0" +glean-parser = "15.0.1" [badges] circle-ci = { repository = "mozilla/glean", branch = "main" } diff --git a/glean-core/build/Cargo.toml b/glean-core/build/Cargo.toml index e03f80b9d8..a40902b0de 100644 --- a/glean-core/build/Cargo.toml +++ b/glean-core/build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glean-build" -version = "15.0.0" +version = "15.0.1" edition = "2021" description = "Glean SDK Rust build helper" repository = "https://github.com/mozilla/glean" diff --git a/glean-core/build/src/lib.rs b/glean-core/build/src/lib.rs index f4a60ea974..3a59647baf 100644 --- a/glean-core/build/src/lib.rs +++ b/glean-core/build/src/lib.rs @@ -39,7 +39,7 @@ use std::env; use xshell_venv::{Result, Shell, VirtualEnv}; -const GLEAN_PARSER_VERSION: &str = "15.0.0"; +const GLEAN_PARSER_VERSION: &str = "15.0.1"; /// A Glean Rust bindings generator. pub struct Builder { diff --git a/glean-core/python/glean/__init__.py b/glean-core/python/glean/__init__.py index 8e063b576a..74a8f8a04c 100644 --- a/glean-core/python/glean/__init__.py +++ b/glean-core/python/glean/__init__.py @@ -30,7 +30,7 @@ __email__ = "glean-team@mozilla.com" -GLEAN_PARSER_VERSION = "15.0.0" +GLEAN_PARSER_VERSION = "15.0.1" parser_version = VersionInfo.parse(GLEAN_PARSER_VERSION) parser_version_next_major = parser_version.bump_major()