From e8963d72d13d7a162df09d4f81f3c1fa8aff09de Mon Sep 17 00:00:00 2001 From: Ruben Arts Date: Wed, 11 Dec 2024 12:53:14 +0100 Subject: [PATCH] bump version --- Cargo.lock | 2 +- Cargo.toml | 2 +- crates/pixi_consts/src/consts.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 07b1fda09..d38907d43 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3590,7 +3590,7 @@ dependencies = [ [[package]] name = "pixi" -version = "0.39.2-prerelease.0" +version = "0.39.2-prerelease.2" dependencies = [ "ahash", "assert_matches", diff --git a/Cargo.toml b/Cargo.toml index c4781bbf2..54f929094 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -165,7 +165,7 @@ license.workspace = true name = "pixi" readme.workspace = true repository.workspace = true -version = "0.39.2-prerelease.1" +version = "0.39.2-prerelease.2" [features] default = ["rustls-tls"] diff --git a/crates/pixi_consts/src/consts.rs b/crates/pixi_consts/src/consts.rs index ae9f0a2d7..ddd720040 100644 --- a/crates/pixi_consts/src/consts.rs +++ b/crates/pixi_consts/src/consts.rs @@ -14,7 +14,7 @@ pub const CONFIG_FILE: &str = "config.toml"; pub const PIXI_DIR: &str = ".pixi"; pub const PIXI_VERSION: &str = match option_env!("PIXI_VERSION") { Some(v) => v, - None => "0.39.1", + None => "0.39.2", }; pub const PREFIX_FILE_NAME: &str = "pixi_env_prefix"; pub const ENVIRONMENTS_DIR: &str = "envs";